Can some help me figure out why the code below will not populate a drop down box. Thanks
//build query string
string thisSQL = "select distinct column1 from table1";
thisSQL = thisSQL + "where 0 = 0 ";
string next;
for(int i = 0; i < divList.Count; i++)
{
if (i == 0)
next = "and ";
else...
I am trying to create a trigger in oracle but when I run the code I get the following:
Warning: Trigger created with compilation errors.
Can anyone help me?
CREATE OR REPLACE TRIGGER stoplight_flag_to_zero
AFTER UPDATE OF status ON projects
FOR EACH ROW
WHEN (old.status = 'Active')
BEGIN...
Based on your response I think I may only want a 1-D array of length two. The array I had was what I was expecting (when I looked at the view source), but I can not get it to populate the select box correctly either way.
Below I have attached some code that is populating a select box. It is reeaing a CF query into a JS 1D array and outputting the array into a selsect box. My problem is that I want to make the JS array 2D and when I try to do this, nothing works. If anyone can help out I would appreciate it.
1D...
In case anyone else is wondering how to do this, I found a custom tag that works great.
http://devex.macromedia.com/developer/gallery/SearchResults.cfm?Keywords=delete+directory&category=*&searchOptions=0
Can anyone help me figure out how to recurse through the directory to delete multiple levels of files and folders using CFFILE.
I can delete the top level fine (i.e. one folder and all files in that folder), but when I try to delete a folder within a folder that contains files I get the error...
Does anyone know how to stop cfinclude from refreshing the "main" page. I have a directory page that is included into my main page. When a link on the directory is clicked I lose any information that the user has put into the page, before they have had a chance to submit. Is there...
philcha
I tried what you suggested but I couldn't get it to work. I am not sure how Attributes.Field1 will retain the value of the form field when the form is not submitted?
Does anyone know how I can keep the value that a user puts into a text box, so when the page refreshes the text box will keep the users input (before the form is submitted)?
Does anyone know how to keep the value a user inputs into a textbox if the page refreshes. I have a couple of textbox's that the user enters values into. One of the fields is populated dynamically when the user clicks on the page that is displayed with cfinclude. When the user does this all of...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.