At first, my batch was merely doing a "CD /D" to a network drive and then executing a special mail application. I was able to call this application directly...
Thanks for all your help getting the date into the date field - now how do I do it in reverse...I have a date in a date field and I want to be able to break it...
Hi, I am trying to put tables side-by-side. The problem is, I have one table already built (static that has text boxes and button). I have a button on that...
Krishna, Hari
hkrishna@...
Apr 1, 2005 7:44 pm
10511
... Well, to put two tables side by side you just nest them in another table: <TABLE> <TR> <TD><TABLE><TR><TD>FIRST TABLE DATA CELL</TD></TR></TD> ...
Ross, You always get a "1" back because the running of the batch file succeeded. It wasn't necessarily going to tell you the internal commands' errorlevels. I...
Hi Hari, ... Using styles it's rather simple, and it won't FORCE the page to a certain width if the clients resolution just won't make it possible to have them...
Thanks for the suggestions, guys. If "1" does indicate a successful execution of the batch, that's fine. I thought a "0" meant that, but oh well. I'll be sure...
I have come across a problem and wonder if anyone can explain why this might be happening. One of my programs uses the value of a query string to determine...
George: I am not sure exactly what you are doing: but if you are always expecting a value in the QueryString: before you do a query on the database: check...
Andy - The correction was simple, since there are a limited number of columns I just look for them, and if I do not find a match then I redirect the user to...
Always, always, validate a query string before you use it for anything. Anyone could have fudged the URL. To help with this, I recommend always making your...
Two thoughts here ... - What precisely was the generated SQL? You'd need to print it and have a look at it. I would suspect that it inadvertently became...
Are you positive a recordset is returned? Do you actually see outputs of something like: <tr> <td></td> <td><a href="http://"></a></td> </tr> in your html...
Just to make sure that I am clear, the problem is not that I do not understand why this is generating such a problem. I have already set up a fix for the...
Hi, I have a question. I have this code... <a href="www.google.com">Click here for google</a> Click on the link and it will open google.com in the same window....
Krishna, Hari
hkrishna@...
Apr 7, 2005 7:50 pm
10529
Google or Yahoo in the new window? ... From: Krishna, Hari [mailto:hkrishna@...] Sent: April 7, 2005 3:50 PM To: 'active-server-pages@yahoogroups.com' ...
Google in the same window and yahoo in a new window. ... From: Cadieux.Tim@... [mailto:Cadieux.Tim@...] Sent: Thursday, April 07, 2005 2:57 PM To:...
Krishna, Hari
hkrishna@...
Apr 7, 2005 7:57 pm
10531
Hari: I would use JavaScript with an OnClick event. You can redirect to the same window (document.location.href = 'http://www.google.com') and also do a ...
<a href="http://www.google.com">Click</a> here will only open google. You can do a frames page on your server that opens google in a frame and have a ...
Hi, Use this simple script: <script type="text/javascript"> function gy() { window.open("http://www.yahoo.com/"); window.location = "http://www.google.com/"; }...