What do you do when you can't use ViewState?

后端 未结 7 1793
长发绾君心
长发绾君心 2021-02-09 06:43

I have a rather complex page that dynamically builds user controls inside of a repeater. This repeater must be bound during the Init page event before ViewState is

相关标签:
7条回答
  • 2021-02-09 07:13

    When creating dynamic controls ... I only populate them on the initial load. Afterwords I recreate the controls on postback in the page load event, and the viewstate seems to handle the repopulating of the values with no problems.

    0 讨论(0)
  • 2021-02-09 07:15

    The LoadViewState method on the page is definitely the answer. Here's the general idea:

    protected override void LoadViewState( object savedState ) {
      var savedStateArray = (object[])savedState;
    
      // Get repeaterData from view state before the normal view state restoration occurs.
      repeaterData = savedStateArray[ 0 ];
    
      // Bind your repeater control to repeaterData here.
    
      // Instruct ASP.NET to perform the normal restoration of view state.
      // This will restore state to your dynamically created controls.
      base.LoadViewState( savedStateArray[ 1 ] );
    }
    

    SaveViewState needs to create the savedState array that we are using above:

    protected override object SaveViewState() {
      var stateToSave = new List<object> { repeaterData, base.SaveViewState() };
      return stateToSave.ToArray();
    }
    

    Don't forget to also bind the repeater in Init or Load using code like this:

    if( !IsPostBack ) {
      // Bind your repeater here.
    }
    
    0 讨论(0)
  • 2021-02-09 07:16

    I have always recreated my dynamic controls in the LoadViewState event. You can store the number of controls needed to be created in the viewstate and then dynamically create that many of them using the LoadControl method inside the LoadViewState event. In this event you have access to the ViewState but it has not been restored to the controls on the page yet.

    0 讨论(0)
  • 2021-02-09 07:18
    protected override void LoadViewState(object savedState)
    {
       // Put your code here before base is called
       base.LoadViewState(savedState);
    }
    

    Is that what you meant? Or did you mean in what order are the controls processed? I think the answer to that is it quasi-random.

    Also, why can't you load the objects you bind to before Page_Load? It's ok to call your business layer at any time during the page lifecycle if you have to, with the exception of pre-render and anything after.

    0 讨论(0)
  • 2021-02-09 07:18

    I have to explicitly null the session value during non postbacks in order to emulate how ViewState works.

    I'm still foggy as to why you can't store whatever object(s) you are binding against in session. If you could store that object in session the following should work:

    1. On first load bind your top user control to the object during OnPreInit. Store the object in session. Viewstate will automatically be stored for those controls. If you have to bind the control the first time on Page_Load that is ok, but you'll end up having two events that call bind if you follow the next step.
    2. On postback, rebind your top user user control in the OnPreInit method against the object you stored in session. All of your controls should be recreated before the viewstate load. Then when viewstate is restored, the values will be set to whatever is in viewstate. The only caveat here is that when you bind again on the postback, you have to make 100% sure that the same number of controls are created again. The key to using Repeaters, Gridviews etc... with dynamic controls inside of them is that they have to be rebound on every postback before the viewstate is loaded. OnPreInit is typically the best place to do this. There is no technical constraint in the framework that dictates that you must do all your work in Page_Load on the first load.

    This should work. However, if you can't use session for some reason, then you'll have to take a slightly different approach such as storing whatever you are binding against in the database after you bind your control, then pulling it out of the database and rebinding again on every postback.

    Am I missing some obvious detail about your situation? I know it can be very tricky to explain the subtleties of the situation without posting code.

    EDIT: I changed all references to OnInit to OnPreInit in this solution. I forgot that MS introduced this new event in ASP.NET 2.0. According to their page lifecycle documentation, OnPreInit is where dynamic controls should be created/recreated.

    0 讨论(0)
  • 2021-02-09 07:22

    1) there's probably a way to get it to work... you just have to make sure to add your controls to the tree at the right moment. Too soon and you don't get ViewState. Too late and you don't get ViewState.

    2) If you can't figure it out, maybe you can turn off viewstate for the hole page and then rely only on querystring for state changes? Any link that was previously a postback would be a link to another URL (or a postback-redirect).

    This can really reduce the weight of the page and make it easier to avoid issues with ViewState.

    0 讨论(0)
提交回复
热议问题