joecool2005 0 Posted December 24, 2015 Report Share Posted December 24, 2015 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 Quote Link to post Share on other sites
justsomeguy 1,135 Posted January 4, 2016 Report Share Posted January 4, 2016 As a first step, make sure that you're able to see the detailed error messages: http://jwcooney.com/2015/04/25/classic-asp-on-iis-8-5-setting-the-configuration-to-see-asp-error-messages/ Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.