You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OboutSuite/AJAXPage/vb_callbackviewstate.aspx.vb

16 lines
440 B

imports System
imports System.Web.UI.WebControls
public class vb_callbackviewstate
inherits OboutInc.oboutAJAXPage
protected lblViewState as Label
sub Page_Load(byval sender as object , byval e as EventArgs)
' set the initial ViewState variable value. this is only executed on first load of page
' when there is a postback or callback, IsPostBack is true
if not Page.IsPostBack
ViewState("something") = 1
end if