Howdee.
OK, you may have gathered this is not a LLBLGen question, but hopefully one of you out there is an asp.net guru, and can help me Here goes:
I am saving the viewstate in session rather than the request.form object. The reason is that when a user goes away and comes back to the page, I can redisplay their viewstate as it was last time they were there. My problem is that the ASP.NET LoadViewState event only fires when you do a postback - quite sensibly! But I need it to fire when I first go into the page, so that immediatly LoadViewState can get the viewstate from the session, and "do its thing"!
Does anyone know how to make the LoadViewState fire? Or failing that, does anyone know how I can manually populate my controls using the viewstate infomation that is persisted in the session??!!
Can I fire the event myself maybe?