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

📄 bookpublicationdate.cs

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



    //*********************************************************************
    //
    // BookPublicationDate Class
    //
    // Represents a book publication date
    //
    //*********************************************************************
	[Designer(typeof(ASPNET.StarterKit.Communities.CommunityDesigner))]
	public class BookPublicationDate : WebControl {

        private DateTime _value;
        private string _dateFormatString = "{0:D}";

    
        //*********************************************************************
        //
        // BookPublicationDate Constructor
        //
        // Assign a default css style (the user can override)
        //
        //*********************************************************************
        public BookPublicationDate() : base() {
            CssClass = "bookPublicationDate";

            // Get ContentInfo object
			if (Context != null) {
				BookInfo objBookInfo = (BookInfo)Context.Items["ContentInfo"];
			    _value = objBookInfo.PublicationDate;
			}
		}

    
        //*********************************************************************
        //
        // DateFormatString Constructor
        //
        // Enables users to format the date
        //
        //*********************************************************************
        public string DateFormatString {
            get {return _dateFormatString;}
            set {_dateFormatString = value;}
        }


    
        //*********************************************************************
        //
        // RenderContents Method
        //
        // Display the title
        //
        //*********************************************************************
        override protected void RenderContents(HtmlTextWriter writer) {
			writer.Write(String.Format(_dateFormatString, _value));    
        }


    }
}

⌨️ 快捷键说明

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