从 web.config 的位置标签创建/访问自定义配置部分

发布于 2025-01-07 17:56:09 字数 757 浏览 0 评论 0原文

我想为各个位置添加一些设置,并且还想按页访问该设置

<location path="Account" myAttr="true">
  <system.web>
     <authorization>
        <allow users="*" />
     </authorization>
  </system.web>
</location>

,或者我想使用

<location path="Account">
  <myNode>true</myNode>
  <system.web>
     <authorization>
        <allow users="*" />
     </authorization>
  </system.web>
</location>

现在我想在代码中访问此设置。我将 MVC3 与 ASP.net 4.0 一起使用。 我找到了一篇关于自定义部分的 MSDN 文章。

http://msdn.microsoft.com/en-us/library/2tw134k3.aspx

我无法在位置标签中使用它。

I want to add some setting for various location and also want to access that per page basis

<location path="Account" myAttr="true">
  <system.web>
     <authorization>
        <allow users="*" />
     </authorization>
  </system.web>
</location>

Or I want to use

<location path="Account">
  <myNode>true</myNode>
  <system.web>
     <authorization>
        <allow users="*" />
     </authorization>
  </system.web>
</location>

Now I want to access this setting in code. I am using MVC3 with ASP.net 4.0 .
I found an MSDN article on Custom Sections .

http://msdn.microsoft.com/en-us/library/2tw134k3.aspx

I am not able to use that in location tags.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初懵 2025-01-14 17:56:09

您可以尝试将 ~ 添加到路径:

并且我没有使用任何 true< /code>...(而且效果很好)。

也许您应该添加合适的类和属性。

You can try to add ~ to the path : <location path="~/Account/LogIn">

and I didn't use any true... (and it works well).

Maybe you should add suitable class and attributes.

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