![]() |
|||
Help needed for search page
By: Admin | 10 Feb 2010 1:03 pm
Hi, CommentsThat's because you return to the page holds the search result, and this page doesn't support "save state" Thanks.
By: Admin | 10 Feb 2010
Hi,
Another way of the solution for your problem is use session for back data.
firstpage.aspx
Whenever you click on submit after binding the grid vaules you just add to session variable.
ex: grid1.datasource= ds_sample. defaultview
grid1.databind( )
session("ds_back")=ds_sample
in the page load after Ispoatback check for back.
if(requset.querystr ing("type")=="b"
{
grid1.datasource= session("ds_back")
grid1.databind( )
}backpage.aspx
when you click on back button use this "firstpage.aspx? type=b"
By: Admin | 10 Feb 2010
Hi,
By: Admin | 10 Feb 2010
|
