I creat one WEB project, this project contain tow WEB FORM, In the first Web Form Design i have tow TextBox for Entring the date(All dataTable between this tow dates) and one Button, I want that when i press to to this Button it will load the second WEB FORM and show all the Data Table in DataGrid In this WEB FORM, So i need To call this tow TextBox value from the first WEB FORM to the second WEB FORM In Load_Page i will use this tow value in select statment. So i want to know how to call this to value from the first WEB FORM. I'am using VB.NET WEB APPLICATION.i have allrady DB in SQL .
|
|
Another way to achieve this is by using the PostBackUrl property of the button. Refer Button..::.PostBackUrl Property for more information |
||
|
|
|
|
In the button click on the first page, you can call the second page by using
Then you can get the textbox from the first page in the second page Page_load event:
If you don't need to do anything on the button event other than posting to the next page, you can do it simpler...
Then you can get the textbox from the first page in the second page Page_load event:
|
|||
|
|
|
|
You can use querystring to get last page values to load page. Use this code Response.Redirect("Default.aspx?value1 =" & value & "&value2" & value) write page name as like default.aspx. |
||
|
|
|
you have a lot of ways to pass values from page to another like query string, sessions, etc.... |
||||
|
