Hello,
I'm working with a classic asp page that calls another classic asp
page. The html in my calling page looks like:
<form method="post"
action="/includes/mypage2.asp?sub type=MyType& ;ecd=1&eid= 97702">
....Do some stuff
<input type="submit" name="btnSubmit " value="MyType">
<input type="hidden" name="PageName" value="/includes/mypage1.asp">
<input type="hidden" name="UrlParms"
value="ID1=9770 2&ID2=2235" ></td>
</form>
Now debugging in Interdev inside the mypage2.asp
I see:
Request.Form("U rlParms") = "ID1=97702& ID2=2235"
Is there any way to easily separate out the ID2? If it was in the
Querystring I could simply do a:
Request.QuerySt ring("ID2")
Thanks,
Eric
I'm working with a classic asp page that calls another classic asp
page. The html in my calling page looks like:
<form method="post"
action="/includes/mypage2.asp?sub type=MyType& ;ecd=1&eid= 97702">
....Do some stuff
<input type="submit" name="btnSubmit " value="MyType">
<input type="hidden" name="PageName" value="/includes/mypage1.asp">
<input type="hidden" name="UrlParms"
value="ID1=9770 2&ID2=2235" ></td>
</form>
Now debugging in Interdev inside the mypage2.asp
I see:
Request.Form("U rlParms") = "ID1=97702& ID2=2235"
Is there any way to easily separate out the ID2? If it was in the
Querystring I could simply do a:
Request.QuerySt ring("ID2")
Thanks,
Eric
Comment