S
Steve Last
Hi all,
I’m using IIS6 for our college Intranet and I’m having trouble using
Request.Form. Here is my code:
<%
If Request.QueryString("action") = "show" Then
Response.Write "title: " & Request.Form("NewsTitle") & "<br />"
End If
%>
<form action="/_admin/blogs/test.asp?action=show" method="post">
<input type="text" name="NewsTitle" />
<input type="submit" value="Add" />
</form>
The page refreshes and generates the following HTML:
title: <br />
<form action="/_admin/blogs/test.asp?action=show" method="post">
<input type="text" name="NewsTitle" />
<input type="submit" value="Add" />
</form>
The Request.Form(“NewsTitleâ€) is empty. I’m sure my HTML and ASP/VBScript
is ok, I’ve been writing for ages, but I’ve never seen it do this before.
Request.QueryString works fine.
After some Google searches some have hinted at Integrated Windows
Authentication being involved. The page in question doesn’t have any
authentication.
Any ideas?
Thanks in advance – and if this is the wrong newsgroup could you point me in
the right direction.
Steve
I’m using IIS6 for our college Intranet and I’m having trouble using
Request.Form. Here is my code:
<%
If Request.QueryString("action") = "show" Then
Response.Write "title: " & Request.Form("NewsTitle") & "<br />"
End If
%>
<form action="/_admin/blogs/test.asp?action=show" method="post">
<input type="text" name="NewsTitle" />
<input type="submit" value="Add" />
</form>
The page refreshes and generates the following HTML:
title: <br />
<form action="/_admin/blogs/test.asp?action=show" method="post">
<input type="text" name="NewsTitle" />
<input type="submit" value="Add" />
</form>
The Request.Form(“NewsTitleâ€) is empty. I’m sure my HTML and ASP/VBScript
is ok, I’ve been writing for ages, but I’ve never seen it do this before.
Request.QueryString works fine.
After some Google searches some have hinted at Integrated Windows
Authentication being involved. The page in question doesn’t have any
authentication.
Any ideas?
Thanks in advance – and if this is the wrong newsgroup could you point me in
the right direction.
Steve