//**************************************************************//
// Paul Wilson -- www.WilsonDotNet.com -- Paul@WilsonDotNet.com //
// Feel free to use and modify -- just leave these credit lines //
// I also always appreciate any other public credit you provide //
//**************************************************************//
using System.Drawing;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Wilson.MasterPages{
[ToolboxData("<{0}:ContentRegion runat=server></{0}:ContentRegion>")]
public class ContentRegion : Panel
{
public ContentRegion() {
base.BackColor = Color.WhiteSmoke;
base.Width = new Unit("100%");
}
public override void RenderBeginTag(HtmlTextWriter writer) {}
public override void RenderEndTag(HtmlTextWriter writer) {}
}
}
|