I have problems with method POST when I use IIS 5.1 + IE 6.x.
When I use method GET that's OK.
For example:
Page HTML:
<form name="frm" action="results.asp" method="post">
<P>Login: <input type="text" name="login" size="15"
maxlength="10"value="">
<P><input type="submit" value="GO">
</form>
Page results.asp:
<%
Dim login
login = request.form("login"
%>
LOGIN = <%=login%>
Result:
1) Method Post:
LOGIN = null Bad
2) Method Get:
LOGIN = mylogin OK
What's the problem with POST method?
Many thanks,
Naser Ghasemlou
When I use method GET that's OK.
For example:
Page HTML:
<form name="frm" action="results.asp" method="post">
<P>Login: <input type="text" name="login" size="15"
maxlength="10"value="">
<P><input type="submit" value="GO">
</form>
Page results.asp:
<%
Dim login
login = request.form("login"
%>
LOGIN = <%=login%>
Result:
1) Method Post:
LOGIN = null Bad
2) Method Get:
LOGIN = mylogin OK
What's the problem with POST method?
Many thanks,
Naser Ghasemlou