Jump to content

Request.form in windows server 2012 R2 with IIS 8.5


joecool2005

Recommended Posts

Hi,

 

In ASP classic, when I call "request.form", my application crashes.

 

I'm using Windows Server 2012 R2 with IIS 8.5.

 

But in Windows 7 with IIS 7.5, the same code works.

 

Here's my code

<html>
<head>

<%
 response.write(request.form("fname"))
 response.write(" " & request.form("lname"))
 %>
</head>
<body>

<form method="post" action="simpleform.asp">
 First Name: <input type="text" name="fname"><br>
 Last Name: <input type="text" name="lname"><br><br>
 <input type="submit" value="Submit">
</form>

</body>
</html>

Please help

 

thanks

 

 

 

 

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...