發(fā)表日期:2019-04 文章編輯:小燈 瀏覽次數(shù):3083
在制作模板前,建議大家把模板公共的代碼提取出來做成母版頁面,下面為一個簡單的母版框架頁內(nèi)容:
@{ ????string?templateDirectory?=?Html.TemplateDirectory();//獲取當(dāng)前網(wǎng)站使用的模板目錄 } <!DOCTYPE?html> <html> <head> ????<title>@Html.Title()</title> ????<meta?name="keywords"?content="@Html.Keywords()"?/> ????<meta?name="description"?content="@Html.Description()"?/> ????<meta?http-equiv="Content-Type"?content="text/html;charset=utf-8"?/> ????<meta?http-equiv="X-UA-Compatible"?content="IE=edge,chrome=1"?/> ????<meta?name="format-detection"?content="telephone=no"?/> ????<link?rel="stylesheet"?href="@templateDirectory/Css/style.css"> ????<script?src="@templateDirectory/Js/jquery.min.js"></script> ????<script?src="@templateDirectory/Js/script.js"></script> </head> <body> ????<div> ????????頂部內(nèi)容..... ????</div> ????@RenderBody() ????<div> ????????底部內(nèi)容..... ????</div> </body> </html>
注:母版頁中一定要加上@RenderBody()這個標(biāo)志,大家可以理解為一個占位標(biāo)記,最終網(wǎng)站頁面執(zhí)行顯示后這個標(biāo)記會被替換成模板頁面的內(nèi)容,關(guān)于母版頁,有幾點需要說明:
1、命名規(guī)則:建議母版頁用_Layout.cshtml或_*Layout.cshtml這樣的命名方式,下劃線開頭,Layout這幾個字符結(jié)尾,避免和其他模板頁面混淆。
2、存放位置:建議直接放在Views目錄下,并需要再_ViewStart.cshtml中設(shè)置后才能生效。
日期:2019-04 瀏覽次數(shù):3145
日期:2019-04 瀏覽次數(shù):3120
日期:2019-04 瀏覽次數(shù):3029
日期:2019-04 瀏覽次數(shù):2856
日期:2019-04 瀏覽次數(shù):2945
日期:2019-04 瀏覽次數(shù):3112
日期:2019-04 瀏覽次數(shù):3048
日期:2019-04 瀏覽次數(shù):3310
日期:2019-04 瀏覽次數(shù):3361
日期:2019-04 瀏覽次數(shù):3013
日期:2019-04 瀏覽次數(shù):3389
日期:2019-04 瀏覽次數(shù):2811
日期:2019-04 瀏覽次數(shù):2954
日期:2019-04 瀏覽次數(shù):3072
日期:2019-04 瀏覽次數(shù):2922
日期:2019-04 瀏覽次數(shù):3367
日期:2019-04 瀏覽次數(shù):3267
日期:2019-04 瀏覽次數(shù):2947
日期:2019-04 瀏覽次數(shù):3171
日期:2019-04 瀏覽次數(shù):3005
日期:2019-04 瀏覽次數(shù):2776
日期:2019-04 瀏覽次數(shù):3082
日期:2019-04 瀏覽次數(shù):2972
日期:2019-04 瀏覽次數(shù):3071
日期:2019-04 瀏覽次數(shù):3023
日期:2019-04 瀏覽次數(shù):2895
日期:2019-04 瀏覽次數(shù):2749
日期:2019-04 瀏覽次數(shù):2765
日期:2019-04 瀏覽次數(shù):2828
日期:2019-04 瀏覽次數(shù):2853
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.