同一应用程序中的多种表单验证

发布于 2024-08-16 14:28:14 字数 577 浏览 2 评论 0原文

我想知道是否可以使用具有以下目录结构的两种不同形式的身份验证登录:

/default.aspx
/登录.aspx
/web.config
/子目录/sublogin.aspx
/子目录/subdefault.aspx
/subdirectory/web.config

根目录中的 web.config 包含以下设置:

<authentication mode="Forms">
  <forms  protection="All" slidingExpiration="true" loginUrl="~/login.aspx" path="/"/>
</authentication>
<authorization>
  <deny users="?"/>
</authorization>

我想要实现的是,除“子目录”之外的所有目录都受到根目录中的 login.aspx 的保护。 “子目录”有自己的login.aspx (sublogin.aspx)

子目录中web.config 的正确内容是什么样的?

I was wondering if it is possible to use two different formsauthentification logins with the following directory structure:

/default.aspx
/login.aspx
/web.config
/subdirectory/sublogin.aspx
/subdirectory/subdefault.aspx
/subdirectory/web.config

The web.config in the root contains the following settings:

<authentication mode="Forms">
  <forms  protection="All" slidingExpiration="true" loginUrl="~/login.aspx" path="/"/>
</authentication>
<authorization>
  <deny users="?"/>
</authorization>

What I want to achieve is, that all directories except 'subdirectory' are protected by the login.aspx in the root. 'subdirectory' has its own login.aspx (sublogin.aspx)

How would the correct content of the web.config in subdirectory look like?

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

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

发布评论

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

评论(1

咽泪装欢 2024-08-23 14:28:14

web.config 部分只能在 machine.config 或应用程序的根 web.config 中定义。不能在应用程序的子文件夹中指定它。

然而,您可以做的是创建另一个恰好存在于另一个应用程序中的 ASP.NET 应用程序。然后每个人都可以有自己的身份验证设置。但在这种情况下,它们将是单独的应用程序,这可能会导致其他问题。

The <authentication> web.config section can only be defined in machine.config or in the application's root web.config. It cannot be specified in sub-folders of your application.

What you can do, however, is create another ASP.NET application that happens to exist within the other application. Then each one can have its own authentication settings. In this case they will be separate applications, though, which might cause other problems.

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