B
Ben
Hi,
i try to submit a form in an aspx file through javascript to an classic asp
page like this:
<form id="ins" method="post">
<input id="conn" name="conn" type="hidden" />
<input runat="server" id="submit1" type="button" onclick="inexcel()"/>
</form>
<script language="javascript" type="text/javascript">
function infilel()
{
document.getElementById("conn").value=conn
document.getElementById("ins").action="infile.asp"
document.getElementById("ins").submit()
return true;
}
</script>
i get the message: The HTTP verb POST used to access path
'/enquete/infile.asp' is not allowed.
I know classic asp pages are allowed to run because in this asp.net
application, using e.g. window.location.href="myfile.asp" works.
What do i have to change in the configuration of IIS 5.0 (or 6.0) to make
this run, or is it an asp.net issue?
Thanks for help
Ben
i try to submit a form in an aspx file through javascript to an classic asp
page like this:
<form id="ins" method="post">
<input id="conn" name="conn" type="hidden" />
<input runat="server" id="submit1" type="button" onclick="inexcel()"/>
</form>
<script language="javascript" type="text/javascript">
function infilel()
{
document.getElementById("conn").value=conn
document.getElementById("ins").action="infile.asp"
document.getElementById("ins").submit()
return true;
}
</script>
i get the message: The HTTP verb POST used to access path
'/enquete/infile.asp' is not allowed.
I know classic asp pages are allowed to run because in this asp.net
application, using e.g. window.location.href="myfile.asp" works.
What do i have to change in the configuration of IIS 5.0 (or 6.0) to make
this run, or is it an asp.net issue?
Thanks for help
Ben