//page load
if(setStoreIt.Equals("KeepItAlive")){
//Do something
}
}
public string storeIt{get; set}
private void setStoreIt()
{
StoreIt = "KeepItAlive";
}
Unfortunately the setStoreIt Automatic Method gets reset everytime a postBack happenes.
I always used HiddenFields to get around this issue.
But today I am presented with an issue where i have to keep a <List> alive.
Any ideas?
Is this a problem with ajaxified pages?
Can I add the automatic method in the aJaxManajer? Ha Ha
Thanx!
protected void Page_Load(object sender, EventArgs e)
{
// check if StoreIt is not emptyif(setStoreIt.Equals("KeepItAlive")){
//Do something
}
}
public string storeIt{get; set}
private void setStoreIt()
{
StoreIt = "KeepItAlive";
}
Unfortunately the setStoreIt Automatic Method gets reset everytime a postBack happenes.
I always used HiddenFields to get around this issue.
But today I am presented with an issue where i have to keep a <List> alive.
Any ideas?
Is this a problem with ajaxified pages?
Can I add the automatic method in the aJaxManajer? Ha Ha
Thanx!