Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have a Telerik Grid (i.e. enhanced version of ASP.Net vanilla grid). On some postbacks we perform major changes to the grid and we don't want load the viewstate for the grid control for that one page load, but we want viewstate to be load to future loads. And in all cases we want to save the viewstate in case the user uses the same data source each time.

It basically goes like this:

  • Page initially loads.
  • Viewstate saved.
  • User manipulates control on page that isn't the change datasource control.
  • Page posts back.
  • Controls created.
  • Viewstate loaded.
  • Events processed.
  • Viewstate saved.
  • User gets back page.
  • User manipulated datasource change control.
  • Page posts back.
  • Controls created.
  • Viewstate loaded (we don't want the grid's viewstate loaded, but it is anyways).
  • Events processed.
  • Viewstate saved (we want all viewstate saved including the new grid's viewstate).
  • User gets back page.
share|improve this question
Can you explain "we don't want viewstate to apply"? – gWiz Oct 21 '09 at 22:15
The viewstate was saved on processing the previous request, but as a result of a button press, the user wants to perform an operation that will change the grid source to another source (and therefore it will have different columns and such) and we don't want the viewstate for the previous grid to apply to the new grid, with it's new source for data. – Orion Adrian Oct 27 '09 at 15:18

2 Answers

up vote 1 down vote accepted

You can derive from the grid control in question and then override the LoadViewState method to not load viewstate when you don't want to.

public class MyGrid : BaseGrid
{
    public bool IsNew { get; set; }

    public override void LoadViewState(object viewState)
    {
        if (!this.IsNew)
        {
            base.LoadViewState(viewState);
        }
    }
}
share|improve this answer

Set EnableViewState = False for the control you don't want to save ViewState information on. Here is a great article on View State: http://msdn.microsoft.com/en-us/library/ms972976.aspx

share|improve this answer
It's not that I don't want to save it. If the grid contents stay the same, I want to load the viewstate, but the if the grid contents change radically because the user loads a different data source then I want to no load the viewstate. But in either case I always want to save the viewstate. – Orion Adrian Oct 27 '09 at 18:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.