ASP.NET web.config 授权设置被忽略

发布于 2024-11-26 05:16:42 字数 2428 浏览 1 评论 0原文

我正在寻找某种解决方案,但找不到。有这个这个但无法找到并在那里回答。我正在ASP.NET 开发服务器上开发一个asp.net 应用程序。我的根 asp.net 文件夹中有以下 web.config:

<?xml version="1.0"?>  
<configuration>  
  <system.web>  
    <compilation debug="true" targetFramework="4.0" />  
    <authentication mode="Forms">  
      <forms name="4df5d465h"  
          loginUrl="~/login.aspx"  
          protection="All"  
          timeout="30" path="/" />  
    </authentication>  
    <authorization>  
      <deny users="?"/>  
    </authorization>  
  </system.web>  
</configuration>  

我的图像文件夹与根 asp.net 应用程序文件夹中的主 web.config 一起。
在图像文件夹内我放置了以下 web.config:

<?xml version="1.0"?>  
<configuration>  
  <system.web>  
    <authorization>  
      <allow roles="*"/>  
      <allow users="*"/>  
    </authorization>  
  </system.web>  
</configuration>  

我将角色属性放在后面以查看其是否有效。
我也用这种方式编写了主要的 web.config:

<?xml version="1.0"?>  
<configuration>
  <system.web>  
    <compilation debug="true" targetFramework="4.0" />  
    <authentication mode="Forms">  
      <forms name="3D45C7D8B0B0C"  
          loginUrl="~/login.aspx"  
          protection="All"  
          timeout="30" path="/" />  
    </authentication>  
    <authorization>  
      <deny users="?"/>  
    </authorization>  
  </system.web>  

  <location path="~/image">  
    <system.web>  
      <authorization>  
        <allow users="*"/>  
      </authorization>  
    </system.web>  
  </location>  
</configuration>

但是登录页面永远无法加载图像

在设计模式下,在 Visual Studio 编辑器中,图像加载在 login.aspx 页面中,然后图像标签必须是好的。

我做错了什么?多谢。

@nico,非常感谢您格式化我的问题。不,我什么也没重写。它是最简单和默认的 ASP.NET 应用程序。它的默认模板 asp.net 应用程序带有 Default.aspx 上的链接和一个简单的 login.aspx 页面,它是一个测试项目,登录表单可以工作,但图像无法加载。

@Chris_Lively,是的,图像文件夹中有一个 web.config,其 web.config 带有 <'allow Roles='*'>,我检查了,该文件夹名为 image\ ,图像标记的 src 指向 image\这让我发疯

I was searching for some solution but can't find one. There is this and this ones but can't found and answer there. Im developing an asp.net application on ASP.NET development server. I have the following web.config in my root asp.net folder:

<?xml version="1.0"?>  
<configuration>  
  <system.web>  
    <compilation debug="true" targetFramework="4.0" />  
    <authentication mode="Forms">  
      <forms name="4df5d465h"  
          loginUrl="~/login.aspx"  
          protection="All"  
          timeout="30" path="/" />  
    </authentication>  
    <authorization>  
      <deny users="?"/>  
    </authorization>  
  </system.web>  
</configuration>  

My image folder is together my main web.config at root asp.net application folder.
Inside the image folder I put the following web.config:

<?xml version="1.0"?>  
<configuration>  
  <system.web>  
    <authorization>  
      <allow roles="*"/>  
      <allow users="*"/>  
    </authorization>  
  </system.web>  
</configuration>  

I put role attribute after to see if its work.
I wrote the main web.config in this way too:

<?xml version="1.0"?>  
<configuration>
  <system.web>  
    <compilation debug="true" targetFramework="4.0" />  
    <authentication mode="Forms">  
      <forms name="3D45C7D8B0B0C"  
          loginUrl="~/login.aspx"  
          protection="All"  
          timeout="30" path="/" />  
    </authentication>  
    <authorization>  
      <deny users="?"/>  
    </authorization>  
  </system.web>  

  <location path="~/image">  
    <system.web>  
      <authorization>  
        <allow users="*"/>  
      </authorization>  
    </system.web>  
  </location>  
</configuration>

But the login page never can load the images

In design mode, inside visual studio editor, the image load in login.aspx page then image tag must be ok.

What I'm doing wrong?? Thanks a lot.

@nico, thanks a lot for format my question. No im not rewriting nothing. Its most simple and default asp.net application possible. Its default template asp.net application with an link on Default.aspx and a simple login.aspx page, its a test project, the login form works but the image doesn't load.

@Chris_Lively, yes there is a web.config in image folder, its web.config with <'allow roles='*'>, i checked, the folder is named image\ , the src of image tag point to image\ its getting me crazy

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

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

发布评论

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

评论(1

与往事干杯 2024-12-03 05:16:42

您的配置文件包含错误 - “角色”标签无法使用星号,您应该定义特定的角色名称 (允许元素)或根本不使用它。

您将在 fiddler 中看到错误消息“解析器错误消息:授权规则名称不能包含“*”字符” 。

我认为这是你问题的原因。

Your config file contains error - 'roles'-tag cannot use asterisk, you should define specific role name (allow element) or dont use it at all.

You'll see error message 'Parser Error Message: Authorization rule names cannot contain the '*' character' in fiddler.

I think it was reason of your problem.

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