public partial class StateBagDemo : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
lblCounter.Text = Counter.ToString();
Counter++;
}
public int Counter
{
get
{
if (ViewState["intCounter"] != null)
{
return ((int)ViewState["intCounter"]);
}
else
{
return 0;
}
}
set
{
ViewState["intCounter"] = value;
}
}
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment