[Category("Copyright")] public string Company { get { return company; } set { company = value; } }
[Category("Copyright")] public string CopyrightText { get { return copyrightText; } set { copyrightText = value; } }
protected override void Render(HtmlTextWriter output) { RenderBeginTag(output); output.Write(copyrightText + " © " + DateTime.Now.Year.ToString() + " " + company); RenderEndTag(output); }