Posted on: 10/9/2015 6:05:27 PM | Views : 941

Hi,
I've been trying to find a guidance of how to implement this. But I see many different ways are possible to handle this and I am not sure and getting confused to experiment with. Somebody please guide me through this. I have a page1.aspx form which contains a table with the first column containing a dropdown list. User selects an option from the dropdown and clicks 'Add' button. This Add button takes them to another page(page2.aspx) where user inputs some data into textboxes.And upon clicking a 'Submit' button in page2.aspx, the data entered by the user has to display in page1.aspx as row in the table. I tried request.querystring but nothing happens. Someone please guide me how to handle this.

Page2.aspx: protected void Submit_Click(object sender, EventArgs e) { Response.Redirect("Page1.aspx?txtName=" + FName.Text); } Page1.aspx: protected void P ...

Go to the complete details ...