asp.net – 为什么在设置@Page masterPageFIle时不暗示@MasterType指令?

前端之家收集整理的这篇文章主要介绍了asp.net – 为什么在设置@Page masterPageFIle时不暗示@MasterType指令?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@MasterType的文档有这个例子.
<%@ Page  masterPageFile="~/MasterPage.master"%>
<%@ MasterType  virtualPath="~/MasterPage.master"%>

为什么甚至需要@MasterType?编译器是否无法仅基于@Page masterPageFile自动采取相同的操作?你什么时候不想同时使用?

解决方法

您可以在每个页面PreInit上设置不同的母版页.因此,母版页通常没有明确定义.
原文链接:https://www.f2er.com/aspnet/248359.html

猜你在找的asp.Net相关文章