Two Forms Problem
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi All, I have a page in which I have used two forms. One of these two forms is used to Send Data to other page, and the other form has a Button. I want to Submit the form when the Button is Clicked , How is that posible. Thanks in Advance.
-
Hi All, I have a page in which I have used two forms. One of these two forms is used to Send Data to other page, and the other form has a Button. I want to Submit the form when the Button is Clicked , How is that posible. Thanks in Advance.
1- Session You can use Session["name"]= variable; In the other page put the session in lable or text. Label1.Text=Session["user"].ToString(); 2- QueryString SqlCommand cmd=new SqlCommand("select id from Table where id="+dgi.Cells[12].Text,sqlConnection1);