Preferred Language:
Listing 29.14 - ControlStateControl.cs
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace myControls
{
public class ControlStateControl : WebControl
{
private string _controlStateText;
public string ViewStateText
{
get
{
if (ViewState["ViewStateText"] == null)
return String.Empty;
else
return (string)ViewState["ViewStateText"];
}
set { ViewState["ViewStateText"] = value; }
}
public string ControlStateText
{
get { return _controlStateText; }
set { _controlStateText = value; }
}
protected override void OnInit(EventArgs e)
{
Page.RegisterRequiresControlState(this);
base.OnInit(e);
}
protected override object SaveControlState()
{
return _controlStateText;
}
protected override void LoadControlState(object savedState)
{
_controlStateText = (string)savedState;
}
protected override void RenderContents(HtmlTextWriter writer)
{
writer.Write("ViewStateText: " + ViewStateText);
writer.WriteBreak();
writer.Write("ControlStateText: " + ControlStateText);
writer.WriteBreak();
}
}
}
Need ASP.NET and Visual Studio 2008 Training?
- Learn ASP.NET 3.5 from Stephen Walther, author of ASP.NET 3.5 Unleashed.
We've provided ASP.NET training for NASA, Lockheed Martin, the National Science Foundation, Verizon,
Boeing, the US House of Representatives, Kaiser, Petco, Mary Kay, and Microsoft.
Why not your company?
-
Receive a four day, hands-on, intensive workshop.
-
We fly to you, anywhere in the world.
-
We can bring our own laptops.
To learn more, visit the
Superexpert Training website.