Does anyone know of a way that I can use Response.Redirect to send the user to a new relative path, but change the protocol to HTTPS?
Users enter on an unencrypted page, so if I use Response.Redirect("./whatever.aspx") it transfers the user but, obviously, not the protocol. However, the page it transfers to requires SSL. So, can I make it more like "transfer to this relative path, but also switch to SSL?"
Thanks!
Users enter on an unencrypted page, so if I use Response.Redirect("./whatever.aspx") it transfers the user but, obviously, not the protocol. However, the page it transfers to requires SSL. So, can I make it more like "transfer to this relative path, but also switch to SSL?"
Thanks!