Page Lifecycle ASP.Net Tutorial

<%@ Page Language="C#" AutoEventWireup="true" %>



    Try to Break Your Viewstate


  function ShowViewState()
  {
    var buf = document.forms[0]["__VIEWSTATE"].value;
    var o = document.forms[0]["ViewStateBox"];
    o.value = buf;
  }
  function UpdateViewState()
  {
    var o = document.forms[0]["ViewStateBox"];
    var viewstate = document.forms[0]["__VIEWSTATE"];
    viewstate.value = o.value;
  }


     
        
             
            
            
          

Here's Your (Encoded) ViewState