localhost haricindeki bütün domain adreslerinin başına https ekleyecektir.Load kısmına eklemeniz yeterli
if (!Request.IsLocal && !Request.IsSecureConnection)
{
string redirectUrl = Request.Url.ToString().Replace("http:", "https:");
Response.Redirect(redirectUrl);
}
Hiç yorum yok:
Yorum Gönder