在 Visual Studio 2008 中调试 HTTPS ASP.NET 站点?

发布于 2024-08-04 12:31:01 字数 255 浏览 1 评论 0原文

其他人如何从 Visual Studio 2008 调试 HTTPS 站点? 此链接似乎表明 Visual Studio 的内置的 Web 服务器不支持 HTTPS,但必须有某种方法来调试这些站点,对吗?如果不是集成服务器,IIS7可以设置为调试Web服务器吗?

How do other people debug HTTPS sites from Visual Studio 2008? This link seems to indicate that Visual Studio's built in web server does not support HTTPS, but there must be some way to debug these sites, right? If not the integrated server, can IIS7 be set as the debugging web server?

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

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

发布评论

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

评论(1

沐歌 2024-08-11 12:31:01

是的,您可以通过单击项目上的属性将IIS设置为调试服务器(耐心等待缓慢加载),然后转到Web选项卡并选择使用 IIS Web 服务器,而不是使用 Visual Studio 开发服务器

-- 编辑

更一般地说,为了回答这个问题,我通常只是在调试时禁用 SSL。我很少需要测试如何通过 SSL 处理事物,并且根据我创建 SSL 链接的方式,可以使用 #if DEBUG 非常简单地对其进行修改。

Yes, you may set IIS as the debugging server by clicking Properties on the project, (waiting patiently while it slowly loads), then go to the Web tab and choose Use IIS Web server instead of Use Visual Studio Development Server.

-- Edit

More generally, to answer the question, I typically just disable SSL while debugging. It's rare that I need to test how I'm dealing with things via SSL, and depending on how I'm creating the SSL links, it can be modified pretty simply, with an #if DEBUG.

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