ASP.NET Forms Authentication and a quot;No Authenticationquot; subfolder(ASP.NET 表单身份验证和“无身份验证子文件夹)
本文介绍了ASP.NET 表单身份验证和“无身份验证"子文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以禁用已通过表单身份验证的网站子文件夹中的所有身份验证?你是如何做到这一点的?
解决方案
是的,在包含以下内容的子文件夹中放置一个 web.config 文件:
<预><代码><配置><system.web><授权><allow users="*"/></授权></system.web></配置>Is it possible to disable all authentication in a subfolder of a web site that is Forms Authenticated? How do you accomplish this?
解决方案
Yes, place a web.config file on the subfolder with this content:
<configuration>
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</configuration>
这篇关于ASP.NET 表单身份验证和“无身份验证"子文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:ASP.NET 表单身份验证和“无身份验证"子文件夹


基础教程推荐
猜你喜欢
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- 将 XML 转换为通用列表 2022-01-01