switching from https to http and vice versa
-
Hi, I am sending request to the server using an https protocol. I want the server to respond with http protocol. Is it possible and how? Chirag P. Saglani Chirag P. Saglani
-
Hi, I am sending request to the server using an https protocol. I want the server to respond with http protocol. Is it possible and how? Chirag P. Saglani Chirag P. Saglani
You can redirect to an unsecure location, but the clien't browser will be aware that the security context is changing.
-
You can redirect to an unsecure location, but the clien't browser will be aware that the security context is changing.
Thanx. See... Redirect will be after I get the response from the sever right ?? So this means that when i send a request to the server by https, the response will also be by https. In my case, I want the server to respond by http. See If u can help. Thanx Regards,
-
Thanx. See... Redirect will be after I get the response from the sever right ?? So this means that when i send a request to the server by https, the response will also be by https. In my case, I want the server to respond by http. See If u can help. Thanx Regards,
Response.Redirect(...) or Server.Transfer(...)