Search code examples
asp.netwebformsviewstatepage-lifecycle

In ASP.Net, during which page lifecycle event does viewstate get loaded?


I know it happens sometime before Load, but during what event exactly?


Solution

  • It's loaded into memory between init and load. See this article for a full break down of the page lifecycle.