give code in asp.net
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
how can i retreive the value entered in a textbox of(html page)in a .aspx page eg: text1=Request.Form("text1") // this is asp code give similar code in asp.net
-
how can i retreive the value entered in a textbox of(html page)in a .aspx page eg: text1=Request.Form("text1") // this is asp code give similar code in asp.net
use "runat=server" for the text1 control to get the value in the codebehind file Cheers;)