How to get the values from post method to the codehind file

Posted by SmartestVEGA on Stack Overflow See other posts from Stack Overflow or by SmartestVEGA
Published on 2010-04-07T09:47:10Z Indexed on 2010/04/07 10:03 UTC
Read the original article Hit count: 246

Filed under:
|
|
|
|

I have created a Webpage which will post as "post" method..not as "get" method.

    <html>
<head>
</head>
<body>
<FORM action="RetrieveData_Post.asp" id=form1 method=post name=form1>
 First Name:
 <br>
 <INPUT id="txtFirstName" name="txtFirstName" >
 <br>
 Last Name:
 <br>
 <INPUT id="txtLastName" name="txtLastName" >
 <br>
 <INPUT type="submit" value="Submit"> 
</FORM>
</body>
</html>

i want to retieve the values in the textboxes in the code behind of another form. Please help me.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about c#.net