| Author |
Topic Search Topic Options
|
pmormr
Senior Member
Joined: 06 January 2003
Location: United States
Status: Offline
Points: 1479
|
Post Options
Thanks(0)
Quote Reply
Topic: HTML Problem Posted: 07 December 2003 at 3:21pm |
This is really strange... i have a form on an html page. it works fine before i add an action, when i add an action, it doesn't display. Anyone see anything wrong?
<html> <head> <title>IAS- Advertiser Login</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>
<body bgcolor="#000088" text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF"> <div align="center"> <font size="6">Advertising Login</font> <hr> <p>Please enter your Userid and password to see the statistics of your advertising campaign. </p> <form name="form1" method="post" action="/_scripts/_ASP/advertising/authenticate.asp"> <table width="200" border="0" cellspacing="2" cellpadding="0"> <tr> <td>UserID</td> <td> <input type="text" name="idnum"> </td> </tr> <tr> <td>Password</td> <td> <input type="password" name="pwd"> </td> </tr> <tr> <td colspan="2"> <div align="center"> <input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"> </div> </td> </tr> </table> </form> <a href="mailto:me@mysite.com"><br> Lost your password or user ID? Click here to send us an email.</a> </div> </body> </html>
|
|
|
 |
KCWebMonkey
Senior Member
Go Chiefs!
Joined: 21 June 2002
Status: Offline
Points: 1319
|
Post Options
Thanks(0)
Quote Reply
Posted: 07 December 2003 at 8:50pm |
|
dunno. works for me when i load it into a .htm file locally.
|
 |
pmormr
Senior Member
Joined: 06 January 2003
Location: United States
Status: Offline
Points: 1479
|
Post Options
Thanks(0)
Quote Reply
Posted: 08 December 2003 at 2:12pm |
it works for me when i open the file in IE but not over IIS... maybe it's some setting that dissallows something
|
|
|
 |
dpyers
Senior Member
Joined: 12 May 2003
Status: Offline
Points: 3937
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 December 2003 at 8:53pm |
|
Did you ever figure this one out?
|
Lead me not into temptation... I know the short cut, follow me.
|
 |
fernan82
Mod Builder Group
Joined: 17 November 2002
Location: United States
Status: Offline
Points: 362
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 December 2003 at 11:41pm |
|
That's odd, it works for me even thru iis 5.0
Do you have the script virtual directory that installs with iis
installed on that site..? perhaps it don't allows you to post data to
it when that virtual dir is installed for security, and IIS is so
stupid that don't know the difference between _scripts and scripts. I'm
just guessing...
I would try removing /_scripts/ from the action and see what happens.
Keep us posted, I'd like to know the answer to this one...
|
FeRnAN
|
 |
pmormr
Senior Member
Joined: 06 January 2003
Location: United States
Status: Offline
Points: 1479
|
Post Options
Thanks(0)
Quote Reply
Posted: 11 December 2003 at 7:28pm |
|
i tried removing the _scripts part of it... the strange thing is that i use simalar forms with the same action as this one and they run just fine. there's nothing wrong with my permissions... the iusr account is set up for write and execute... no clue on this one!
|
|
|
 |
pmormr
Senior Member
Joined: 06 January 2003
Location: United States
Status: Offline
Points: 1479
|
Post Options
Thanks(0)
Quote Reply
Posted: 11 December 2003 at 7:30pm |
|
i just tried moving the file, (to make sure that the directory wasn't corrupted) to no eval. this really sucks because this is a key component to my site... this is the whole advertising software system that i wrote
|
|
|
 |
dpyers
Senior Member
Joined: 12 May 2003
Status: Offline
Points: 3937
|
Post Options
Thanks(0)
Quote Reply
Posted: 11 December 2003 at 9:41pm |
Do you know if it's getting to the form handler? Your post indicated that nothing displayed. Is it the input form that dowsn't display, or is it jumping to the form handler and tossing a blank screen?
You might want to do a test with a dummy handler (response.write "Got this far") in the same directory as the form page. Might help sectionalize the prblem.
If you're testing it locally, make sure any Anti-virus script blockers and pop-up blockers are off.
Is IIS up and serving other asp pages?
Grasping at straws here...
|
Lead me not into temptation... I know the short cut, follow me.
|
 |