Preferred Language:
Listing 29.12 - ViewStateControl.cs
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace myControls
{
public class ViewStateControl : WebControl
{
private string _text;
public string Text
{
get { return _text; }
set { _text = value; }
}
public string ViewStateText
{
get
{
if (ViewState["ViewStateText"] == null)
return String.Empty;
else
return (string)ViewState["ViewStateText"];
}
set { ViewState["ViewStateText"] = value; }
}
protected override void RenderContents(HtmlTextWriter writer)
{
writer.Write("Text: " + Text);
writer.WriteBreak();
writer.Write("ViewStateText: " + ViewStateText);
writer.WriteBreak();
}
}
}
ASP.NET 3.5 Unleashed
- Containing almost 2,000 pages of code samples and in-depth explanation of the
ASP.NET 3.5 Framework, ASP.NET 3.5 Unleashed is the most comprehensive book
written on the ASP.NET 3.5 Framework.
ASP.NET 3.5 Unleashed is now available in your local bookstore and online (Published January 7, 2008).
All of the code samples from this book are hosted "live" at this website.
Click here
to view the table of contents and code samples.