Hallo everyone,
I am using a VS 2005 and aspx.vb. i have a updatepanel with some textbox. So when the user the enters the data it filter's from sql table according to that and fill the gridview below the update panel. The gridview has a edit option.
Now iam redirecting to another page as shown below in the selectedIndexch anged when the user click the edit button
The problem now is after redirecting when i return to the page the session state is ended and all the filter value is the textbox is gone. so how can i resolve it by storing the sessionstate for my situation..
It could be good it some code example.
thank you..
dinesh
I am using a VS 2005 and aspx.vb. i have a updatepanel with some textbox. So when the user the enters the data it filter's from sql table according to that and fill the gridview below the update panel. The gridview has a edit option.
Now iam redirecting to another page as shown below in the selectedIndexch anged when the user click the edit button
Code:
Protected Sub gvListe_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles gvListe.SelectedIndexChanged
Response.Redirect("AngebotDetails.aspx?Nummer=" & gvListe.SelectedValue.ToString)
End Sub
It could be good it some code example.
thank you..
dinesh
Comment