⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pageheader.cs

📁 C#邮件代码库,用于邮件发送
💻 CS
字号:
namespace ASPNET.StarterKit.Communities {
    using System;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
	using System.ComponentModel;


    //*********************************************************************
    //
    // PageHeader Class
    //
    // Represents a page header
    //
    //*********************************************************************
	[Designer(typeof(ASPNET.StarterKit.Communities.CommunityDesigner))]	
    public class PageHeader : WebControl {

		//SMR - Enh - Added constructor to assign the default class same as SectionTitle.cs
		public PageHeader() : base()
		{
			CssClass = "PageHeader";
		}

        //*********************************************************************
        //
        // RenderContents Method
        //
        // Display content by retrieving content from context
        //
        //*********************************************************************
        override protected void RenderContents(HtmlTextWriter writer) {
            // Get SectionInfo object
            SectionInfo objSectionInfo = (SectionInfo)Context.Items["SectionInfo"];
            
            // Write header
            writer.Write(objSectionInfo.PageHeader);
        }


    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -