我想知道是否有办法加载内容页面而不加载主页面(ASP WebForms for .NET 4.0)
答案 0 :(得分:1)
不,MasterPage 是使用它的任何ContentPage
的一部分。
http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx
你应该解释你实际上想要实现(或防止)的内容,因为回发是一个回发 - 有或没有MasterPage。
答案 1 :(得分:0)
也许您可以使用UpdatePanel?
E.g。在您的母版页中使用以下内容:
<asp:UpdatePanel ID="MasterUpdatePanel" runat="server" UpdateMode="Always">
<ContentTemplate>
<asp:ContentPlaceHolder ID="MasterPlaceHolder" runat="server">
Child page content goes here
</asp:ContentPlaceHolder>
</ContentTemplate>
</asp:UpdatePanel>