Creating nested master pages in ASP.NET Web Application(在 ASP.NET Web 应用程序中创建嵌套母版页)
问题描述
是否可以像在 ASP.NET 网站项目中那样在 ASP.NET Web 应用程序项目中创建嵌套母版页?
Is it possible to create nested master pages in an ASP.NET Web Application projects as one can do in ASP.NET Website projects?
我正在使用 Visual Studio 2008 并开发 ASP.NET Web 应用程序.在创建母版页时,无法选择另一个母版页,如果可用,我可以创建嵌套的母版页.
I am using Visual Studio 2008 and working on an ASP.NET Web Application. While creating a master page there is no option to choose another master page which if was available would have allowed me to create nested master pages.
有没有人遇到过类似的问题?是否推荐任何类型的工作?
Have anyone faced similar issue? Is any sort of work around recommended?
在此先感谢您的帮助.干杯.
Thanks in advance for any help. Cheers.
推荐答案
是的,从 .NET 框架的第 2 版开始,已经支持嵌套母版页.一个警告是,如果您有嵌套的母版页,您将不会在 Visual Studio 2005 中获得设计时支持.这在 VS 2008 中不是问题.
Yes, from version 2 of the .NET framework, nested master pages have been supported. One caveat is that you won't get design time support in Visual Studio 2005 if you have nested master pages. This isn't an issue in VS 2008.
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="SecondLevelMaster.master.cs" Inherits="SecondLevelMaster" **MasterPageFile="~/RootMaster.master"** %>
这篇关于在 ASP.NET Web 应用程序中创建嵌套母版页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 ASP.NET Web 应用程序中创建嵌套母版页
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 使用 rss + c# 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01