0
將網站由Https轉成Http
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Request.ServerVariables("HTTPS").ToString() = "on" Then // 如果是https就導到http
Response.Redirect(HttpContext.Current.Request.Url.AbsoluteUri.Replace("https:", "http:"))
End If
End Sub