web.config 中的多个/不同身份验证设置

发布于 2024-07-09 21:37:04 字数 835 浏览 6 评论 0原文

我将如何为我的网络应用程序的不同部分设置不同的身份验证标签? 假设我有:

/
/folder1/
/folder2/

是否可以为每个文件夹指定不同的 标签?

我希望folder1 使用Windows 身份验证,但folder2 使用Forms 身份验证。

我尝试在 标记中进行操作,但看起来您不能在 标记中使用 标记。 location/> 标签,至少不是通过内置网络服务器的 VS 2008。

此错误显示 - 错误 3 在应用程序级别之外使用注册为 allowedDefinition='MachineToApplication' 的部分是错误的。 此错误可能是由于未将虚拟目录配置为 IIS 中的应用程序而导致的。

<location path="/folder1">
    <system.web>
      <authentication mode="Forms" />
      <authorization>
        <deny users="?"/>
      </authorization>
    </system.web>
  </location>

How would I go about setting different authentication tags for different parts of my web app? Say I have:

/
/folder1/
/folder2/

Would it be possible to specify different <authentication/> tags for each folder?

I want folder1 to use Windows authentication but folder2 use Forms authentication.

I tried doing in a <location/> tag but it doesn't look like you can have <authentication/> tags in a <location/> tags, at least not via VS 2008 with it's built in webserver.

This errors out saying - Error 3 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

<location path="/folder1">
    <system.web>
      <authentication mode="Forms" />
      <authorization>
        <deny users="?"/>
      </authorization>
    </system.web>
  </location>

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

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

发布评论

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

评论(3

狼性发作 2024-07-16 21:37:04

您只能在顶层 web.config 上使用 。 您可能需要创建多个应用程序。 即,您可以在应用程序中创建应用程序,并在每个应用程序中使用不同的身份验证模式。

You can only have <authentication /> on the top level web.config. You may have to create multiple applications. ie you can create an application within an application and use different authentication modes in each one.

惟欲睡 2024-07-16 21:37:04

我认为您可以在folder1上设置forms身份验证授权,然后

<allow users="*" />

通过在文件夹上设置windows权限来控制windows访问。

我没有尝试过,但我想不出为什么这不起作用。

I think you can set the forms authentication authorization on folder1 to

<allow users="*" />

then control the windows access via setting windows permissions on the folder.

I haven't tried it, but I can't think of why that wouldn't work.

长亭外,古道边 2024-07-16 21:37:04

这些设置仅在 ASP.Net 应用程序的根级别有效。 要在子文件夹中使用不同的设置,您需要进入 IIS 并将该子文件夹设置为新应用程序。

完成此操作后,该文件夹将在 II 管理器中具有不同的图标。 在子文件夹中,创建一个新的 web.config 文件并在其中添加新的身份验证设置。

更多信息请访问 创建应用程序

These settings are only valid at the root level of your ASP.Net application. To use different settings in a sub folder you will need to go into IIS and set that sub folder to be a new application.

Once you done this, the folder will have a different icon in the IIs manager. Inside your subfolder, create a new web.config file and add the new authentication settings there.

More information available at Creating Applications.

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