In JavaScript the single '=' is an assignment operator. Thus you are assigning the value 'Atlanta' to your variable strCity. To test for equality you should...
Mark, Thanks for the reply, and Happy New Year! What you picked up was a transcription error from the actual code I was trying to convert. Change that to...
Paul, A couple more questions while I'm at it... 1) In VBS you can exit a function like this: Function MyFunction() If strMyVariable = "No" Then Exit Function ...
I would rather do it this way: <form name="" action="" onSubmit="return Validation();"> ... </form> ... From: "The Professional Network" To: " ASP Developers" ...
Hi Far, ... return; Optionally, you can have it return a value using: return "something"; ... strLocation = strCity + ", " + strState Regards, Shawn K. Hall ...
Shawn, Many thanks. Is JS picky about nulls, needing some kind of isnull() function? I have an HTML text box named txtYourEmailAddress in an HTML form named ...
I just skimmed your message, so I'm not sure if this is the *only* problem, but I noticed that in the following line of code... ... ...in your conditional...
John, Thanks, Far ... From: John Vieth [mailto:jvieth@...] Sent: Monday, January 03, 2005 9:23 AM To: active-server-pages@yahoogroups.com Subject: RE:...
No problem. I think mine was kind of a duplicate solution and probably not necessary, but I hadn't read that far ahead in my inbox at the time I sent my...
Hello All: I have been tapped to create a "test uptime" utitlity in C# whereup we are given a URL, and the code would gather all the form fields in that given...
Hi, I'm wanting to gather info from a database and create a downloadable xml file using ASP. This is my first project using xml. Could someone tell me where I...
Hi Brian, ... Do you just need to provide an ado-capable xml structure (something that will exactly represent the structure of the data as it appears in the...
Since I have a working knowledge of XML, the quick and dirty solution for me is to just iterate through the recordset and, for each record, write some XML to a...
Thanks for the quick reply guys. The data in my recordset contains delimited strings that will have to be split before it is output to the xml file. It looks...
hi folks i want to build a system where users are allowed to make new folders. i know this can easily be done with FSO. my question, is whether if (and how)...
Presumably (but I've never tried it) it can open the file you want to copy, create a new file, and allow you to loop and read/write the lines across until you...
Okay I have a very puzzling issue. I have a windows 2003 enterprise server. I have the asp enabled a type to be run in iis. I have the virtual directory in the...
Hi Geek, ... In IIS Manager: * Find the site * right-click on the virtual directory in question * "Properties" * [Virtual Directory] tab * Next to "Application...
I did as you suggested and restarted the IIS web Service and still no go. As I was reading in something yesterday that there was a value set in the registry on...
Help! I'm trying to order posts such that the most recent post or reply floats to the top. It doesn't work but it at least groups posts by date - see...
Hi Rick, ... When you say 'current date' do you mean Date() or Now()? The difference is a matter of time. Date() is a whole number and Time() is a fraction....