welldefined
Programmer
Hi,
Current page is:
<form action="Next.asp" method="post">
<input type="text" value="abc" name="input1">
<input type="submit">
</form>
<a htef="Next.asp">Next</a>
After click the submit button, <input type="submit">, we go to next page, Next.asp, and we can get the value "abc" by
request.form("input1")
If click the tag <a htef="Next.asp">Next</a>, we can also go to page Next.asp, but how to get the value "abc"??(without using querystring nor cookies)
Current page is:
<form action="Next.asp" method="post">
<input type="text" value="abc" name="input1">
<input type="submit">
</form>
<a htef="Next.asp">Next</a>
After click the submit button, <input type="submit">, we go to next page, Next.asp, and we can get the value "abc" by
request.form("input1")
If click the tag <a htef="Next.asp">Next</a>, we can also go to page Next.asp, but how to get the value "abc"??(without using querystring nor cookies)