如何使 ASP.NET 应用程序仅通过 HTTPS 提供页面服务?
我希望我的应用程序通过 SSL 提供其所有网页,因此我将这些行...
<secureWebPages enabled="true">
<directory path="." />
</secureWebPages>
... 添加到我的 Web.config 中,生成的编译器错误是:
构建(网络):无法识别配置部分 secureWebPages。
我正在运行 Visual Studio 2008
I want my application to serve all of its web pages over SSL, so I added the lines...
<secureWebPages enabled="true">
<directory path="." />
</secureWebPages>
... to my Web.config and the resulting compiler error is:
Build (web): Unrecognized configuration section secureWebPages.
I am running Visual Studio 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您可能需要添加适当的
configSections
...Sounds like you might need to add the appropriate
configSections
...如果您想要一个适用于整个 Web 应用程序的简单、快速的解决方案,您可以将其添加到
Global.asax
文件中的Application_BeginRequest
方法中。If you want a simple, quick solution to work for your entire web application, you could add this to the
Application_BeginRequest
method in yourGlobal.asax
file.