R
rbourgeois
Hi,
I am trying to find out where a bound dataset is being stored. I am
fairly new to all this so let me try to explain with an example using
my code:
if( !IsPostBack)
{
grdMyDataGrid.DataSource = GetData();
grdMyDataGrid.DataBind();
}
Since my data persists every time I do a postback, it must be stored
somewhere. Is it stored in my ViewState? In the Session? Some other
mechanism?
Thanks in advance.
I am trying to find out where a bound dataset is being stored. I am
fairly new to all this so let me try to explain with an example using
my code:
if( !IsPostBack)
{
grdMyDataGrid.DataSource = GetData();
grdMyDataGrid.DataBind();
}
Since my data persists every time I do a postback, it must be stored
somewhere. Is it stored in my ViewState? In the Session? Some other
mechanism?
Thanks in advance.