ASP.net 检查页面是 http 还是 https

发布于 2024-08-03 08:13:43 字数 79 浏览 1 评论 0原文

我有一个 Web 应用程序托管在多个服务器上,其中一些服务器位于 https 上。如何从代码隐藏中检查页面当前是否为 http 或 https?

I have a web application hosted on multiple servers some of which are on https. How can I check from code behind if a page is currently in http or https?

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

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

发布评论

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

评论(7

╰ゝ天使的微笑 2024-08-10 08:13:43

您可以参考 HttpRequest 类上的 Request.IsSecureConnection 属性。如需页面、用户控件等外部的完整引用,请使用 HttpContext.Current.Request.IsSecureConnection。

You can refer to the Request.IsSecureConnection property on the HttpRequest class. For a full reference outside a page, user control or alike, use HttpContext.Current.Request.IsSecureConnection.

神妖 2024-08-10 08:13:43
Page.Request.Url.Scheme

也有效。它返回 httphttps 等。

参考:http://msdn.microsoft.com/en-us/library/system.uri.scheme.aspx

Page.Request.Url.Scheme

works as well. It returns http, https, etc.

Ref: http://msdn.microsoft.com/en-us/library/system.uri.scheme.aspx

满意归宿 2024-08-10 08:13:43

更新 Aspnet Core 2.0,现在,您应该在控制器内使用 Request.IsHttps

Update for Aspnet Core 2.0, now, you should use Request.IsHttps inside your controllers.

疯了 2024-08-10 08:13:43

使用 - HttpContext.Current.Request.IsSecureConnection

Use - HttpContext.Current.Request.IsSecureConnection

小清晰的声音 2024-08-10 08:13:43

或者:

Request.ServerVariables["SERVER_PROTOCOL"];

Alternatively:

Request.ServerVariables["SERVER_PROTOCOL"];
羞稚 2024-08-10 08:13:43

在.net core中我使用:

Context.Request.Scheme == Uri.UriSchemeHttps

In .net core I use:

Context.Request.Scheme == Uri.UriSchemeHttps
近箐 2024-08-10 08:13:43

试试这个,

aCookie.Secure = HttpContext.Current.Request.IsSecureConnection

Try this,

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