This is a wierd behavior that I am seeing. Let me know what could be the issue.
I tested this both in my local IIS and production IIS. The same code works. I have made sure that the path is exactly the same, the properties are exactly the same.
This is a simple form with a textbox and it submits to another ASP page.
The above form is able to submit to the receiving ASP page.
At both the IIS Servers, the page is set to Anonymous Authentication.
----------------------------------------
Scenario 2:
This page has the following code:
I am trying to grab the LOGON_USER and dump it in the textbox and then submit the value. Both the local and production environment, the values are not being submitted to the receiving page.
In order to grab the logon_user, I set the authentication to "Integrated Windows Authentication".
Why am I not able to submit the form elements when I set the page to IWA?
To check if I am able to submit form elements and their values again if I am to revert back to "Anonymous Authentication", I need to close this browser window, open a new browser window, and then I am able to submit the form elements again. Same case both in Production and local environment.
Any responses or suggestions would be appreciated.
Thanks.
I tested this both in my local IIS and production IIS. The same code works. I have made sure that the path is exactly the same, the properties are exactly the same.
This is a simple form with a textbox and it submits to another ASP page.
Code:
<%@Language="VBScript"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>Velocity</title>
</head>
<body>
<form name="frmVelocity" method="post" action="updateHomeUsersProcess.asp">
<input type="text" name="test1" value="Test1"/>
<input type="submit" value="Update" />
</form>
</body>
</html>
The above form is able to submit to the receiving ASP page.
At both the IIS Servers, the page is set to Anonymous Authentication.
----------------------------------------
Scenario 2:
This page has the following code:
Code:
<%@Language="VBScript"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>Velocity</title>
</head>
<body>
<%sUser = Request.ServerVariables("LOGON_USER") %>
<form name="frmVelocity" method="post" action="updateHomeUsersProcess.asp">
<input type="text" name="test1" value="<%=sUser%>"/>
<input type="submit" value="Update" />
</form>
</body>
</html>
I am trying to grab the LOGON_USER and dump it in the textbox and then submit the value. Both the local and production environment, the values are not being submitted to the receiving page.
In order to grab the logon_user, I set the authentication to "Integrated Windows Authentication".
Why am I not able to submit the form elements when I set the page to IWA?
To check if I am able to submit form elements and their values again if I am to revert back to "Anonymous Authentication", I need to close this browser window, open a new browser window, and then I am able to submit the form elements again. Same case both in Production and local environment.
Any responses or suggestions would be appreciated.
Thanks.