Hi all,
I'm totally new to .NET. I'm trying some simple stuffs and stuck with form submit. Any help is appreciated it.
Form1:
form method="get" action="/IMap.aspx" id=form2 name=form1>
<b><i>Enter Facet Number: </i></b>
<input name="map" type="text" size="5">
<input type="submit" value="Send" id=submit1 name=submit1>
</form></p>
iMap.aspx: How do I get the input "map" in the previous form ?
in asp it's just this simple
<% map = Request("map")%>
Thank you.
I'm totally new to .NET. I'm trying some simple stuffs and stuck with form submit. Any help is appreciated it.
Form1:
form method="get" action="/IMap.aspx" id=form2 name=form1>
<b><i>Enter Facet Number: </i></b>
<input name="map" type="text" size="5">
<input type="submit" value="Send" id=submit1 name=submit1>
</form></p>
iMap.aspx: How do I get the input "map" in the previous form ?
in asp it's just this simple
<% map = Request("map")%>
Thank you.