Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Asp Forms won't submit... IIS Issue?

Status
Not open for further replies.

slackah

Programmer
Aug 25, 2003
15
US
Hi

I have some asp pages that work fine on 1 pc, but when I move them to another I get strange results. Both machines are XP Pro with IIS 5.1. On the second machine, when I submit a page to itself, it works. When I call another page in the form action, it doesn't. The original page seems like it refreshes.....no error, no change.

For example, when I run this as "submitpage.asp", and the form action page("whatever.asp") does not exist, submit page justs refreshes. The same thing happens when I create "whatever.asp".

<%@ Language=VBScript %>
<HTML>
<HEAD>
</HEAD>
<BODY>
<FORM action=&quot;whatever.asp&quot; method=&quot;post&quot;>
<INPUT type=&quot;text&quot; id=text1 name=text1>
<INPUT type=&quot;submit&quot; value=&quot;Submit&quot; id=submit1 name=submit1>
</FORM>
</BODY>
</HTML>

I've even taken examples from IIS Help and pasted them directly into my texpad. Still, no dice. Is this an IIS issue? Any ideas????
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top