使用 ASP.NET 禁用子目录中的主题

发布于 2024-09-25 15:10:49 字数 413 浏览 1 评论 0原文

这应该是一个简单的问题。我正在使用一个在其 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清音悠歌 2024-10-02 15:10:49

通过一个非常基本的 Web.config 得到它:

<?xml version="1.0"?>
<configuration>
        <system.web>
                <pages theme="" />
        </system.web>
</configuration>

Got it with a very basic Web.config:

<?xml version="1.0"?>
<configuration>
        <system.web>
                <pages theme="" />
        </system.web>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文