| Author: srilu 30 May 2008 | Member Level: Diamond | Rating: Points: 2 |
Hi, u can store those values in XML File and send them to other pages, or u can put them in a dataset or arraylist and save them in a sesion
|
| Author: Shaijil 30 May 2008 | Member Level: Bronze | Rating: Points: 2 |
U can also store the values in an array and pass it via Query string. ex: Response.Redirect("Form1.aspx?'" + dataArray + "'");
|
| Author: Kumar Velu 30 May 2008 | Member Level: Diamond | Rating: Points: 2 |
hi,
try like this:
Response.Redirect("Webform2.aspx?values=" + this.txtName.Text + "&LastName=" + this.txtLastName.Text);
check it out..
|
| Author: mahendra 30 May 2008 | Member Level: Gold | Rating: Points: 2 |
You can use Postbackurl property of the button.
|
| Author: Parashu(Swathimutyam) 30 May 2008 | Member Level: Gold | Rating: Points: 2 |
maintain the session management
like this.Page.Session["ArrayOfValues"]=Array;
use it in some other page.
|
| Author: Yuvaraj 30 May 2008 | Member Level: Silver | Rating: Points: 2 |
You can use the query string mwthod to pass values to next page Response.Redirect("Sample.aspx?item1="+txtName.Text);
|