温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:MyWebPages51aspx汉化最终版
当前文件:
MyWebPagesStarterKit/App_Code/Controls/WebSiteTitle.cs,打开代码结构图
MyWebPagesStarterKit/App_Code/Controls/WebSiteTitle.cs,打开代码结构图1//=============================================================================================== 2
// 3
// (c) Copyright Microsoft Corporation. 4
// This source is subject to the Microsoft Permissive License. 5
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx. 6
// All other rights reserved. 7
// 8
//=============================================================================================== 9
10
using System; 11
using System.Data; 12
using System.Configuration; 13
using System.Web; 14
using System.Web.Security; 15
using System.Web.UI; 16
using System.Web.UI.WebControls; 17
using System.Web.UI.WebControls.WebParts; 18
using System.Web.UI.HtmlControls; 19
20
namespace MyWebPagesStarterKit.Controls 21
{ 22
public class WebSiteTitle : Control 23
{ 24
public WebSiteTitle() { } 25
26
protected override void Render(HtmlTextWriter writer) 27
{ 28
writer.Write(WebSite.GetInstance().WebSiteTitle); 29
} 30
} 31
}





}
}