使用 ASP.NET 禁用子目录中的主题
这应该是一个简单的问题。我正在使用一个在其 Web.config 文件中定义了主题的程序。我想为子目录关闭这些。
我将 Web.config 复制到一个子目录中,并尝试从 Web.config 上的页面元素中删除 theme 属性,但这并没有让我得到任何结果。我收到了一堆关于非根 Web.config 文件中显然不允许的元素的错误,因此我删除了所有这些元素,但我仍然收到相同的错误。
我尝试在 ASPX Page
标头中添加 EnableTheming="False"
、定义 Language=C#
等的内容,但它没有也不工作。
因此,如果有人能告诉我一种经过测试、确认的方法来完成这项工作,我将不胜感激。我在 Server 2003 上使用 .NET Framework 2.0。
This should be a simple one. I am using a program that has themes defined in its Web.config file. I want to turn these off for a subdirectory.
I copied Web.config into a subdirectory and tried removing the theme attribute from the pages element on Web.config but that didn't get me anywhere. I got a bunch of errors about elements that are apparently not allowed in non-root Web.config files so I removed all of those elements, but I am still getting the same error.
I tried adding EnableTheming="False"
in the ASPX Page
header, the thing that defines Language=C#
, etc., but it didn't work either.
So if someone can tell me a tested, confirmed way to make this work, I would appreciate that. I am using .NET Framework 2.0 on Server 2003.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过一个非常基本的 Web.config 得到它:
Got it with a very basic Web.config: