時(shí)間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(1)
//關(guān)于ASP.NET動(dòng)態(tài)加載Master頁面
//首先創(chuàng)建一母版頁Master.master
/*
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Master.master.cs" Inherits="Master" %>
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">
*/
//創(chuàng)建一內(nèi)容頁面,去掉內(nèi)容頁面所有的所有的HTML
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
//創(chuàng)建一個(gè)基礎(chǔ)頁面
///
///BasePage 的摘要說明
///
public class BasePage:System.Web.UI.Page
{
public BasePage()
{
//
//TODO: 在此處添加構(gòu)造函數(shù)邏輯
//
this.PreInit += new EventHandler(BasePage_PreInit);
}
//母板頁面的載入是在PreInit事件中的
void BasePage_PreInit(object sender, EventArgs e)
{
MasterPageFile = "~/Master.master";
}
}
//最后在內(nèi)容頁面的類中繼承基礎(chǔ)類
public partial class Default2:BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
關(guān)鍵詞標(biāo)簽:ASP.NET
相關(guān)閱讀
熱門文章 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 鐘離圣遺物推薦-原神鐘離圣遺物詞條 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯(cuò)誤 使用aspnet_regiis.exe 重新注冊(cè).NET Framework
人氣排行 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 asp.net表單提交方法GET\POST 在ASP.NET中如何判斷用戶IE瀏覽器的版本 Asp.net中messagebox的實(shí)現(xiàn)方法 Asp.net中的web.config配置 在ASP.NET MVC中實(shí)現(xiàn)大文件異步上傳 asp.net獲取URL和IP地址 FileUpload上傳多文件出現(xiàn)錯(cuò)誤的解決方法