【发布时间】:2014-05-30 12:27:04
【问题描述】:
我知道一些 asp.net http 块技术。我有付款页面Payment.aspx。我只想应用 https 这个页面其他页面将使用 http 但 Payment.aspx 将使用 https。
pageName = Request.Url.AbsoluteUri;
if (pageName == "http://?????.com/Payment.aspx")
{
Response.Redirect("https://?.com/Payment.aspx");
}
由于我的服务器提供商,此技术不起作用。等待您的建议。谢谢。
【问题讨论】: