Ask a Question related to ASP.NET General, Design and Development.
-
Raymond Tam #1
HTTPS to HTTP
When I am using server-side button to switch from https to
http by using response.redirect "http://a.apsx" in
response to the client event, I am still at the https
environment (ie. the address bar on the IE is
[url]https://a.aspx[/url]). However, when using hyperlink control,
there is no mis-representation.
Can anyone advise how to deal with this? Is it .NET bug?
Raymond Tam Guest
-
Switching Between HTTP and HTTPS
Hi I wish to have a web site that has most of the pages as normal HTTP pages but has some areas that use HTTPS. I want to have it that if a user... -
http to https
Is there a coldfusion function that determines the gives me the protocol of the address bar(http, https) .I tried GetHttpRequestData, but I do not... -
[PHP] PHP won't parse under https, but will with http
>> Is this a virtual host ? How did you define the AddType in httpd.conf ? Yes. And I believe our AddTypes are set for each v-host. In this case,... -
PHP won't parse under https, but will with http
I'm not sure if this is the right forum for this question, but I'm hoping someone can help nonetheless. :) I installed an SSL Cert. on a site the... -
Switching to and from http and https
hello all. currently, this is how a line of my form is setup (names have been changed to protect the innocent ;) <form... -
Rad #2
Re: HTTPS to HTTP
I dont' think so.... there may be something else going on...> Can anyone advise how to deal with this? Is it .NET bug?
Rad Guest
-
Carl Prothman [MVP] #3
Re: HTTPS to HTTP
"Raymond Tam" <rtam@omac.com> wrote
Try including the complete URL (include the server or domain name).> When I am using server-side button to switch from https to
> http by using response.redirect "http://a.apsx" in
> response to the client event, I am still at the https
> environment (ie. the address bar on the IE is
> [url]https://a.aspx[/url]). However, when using hyperlink control,
> there is no mis-representation.
>
--
Thanks,
Carl Prothman
Microsoft ASP.NET MVP
[url]http://www.able-consulting.com[/url]
> Can anyone advise how to deal with this? Is it .NET bug?
>
Carl Prothman [MVP] Guest
-
Marco Scheel #4
Re: HTTPS to HTTP
hi,
thats by design :-) if you redirect the "script" the client won't update the
adress bar. for that you have to use a javascript or http-meta refresh.
try the following (with or without https)
page1.aspx
-> do a redirect to page2.aspx
in the adress bar you will still see page1.aspx :-)
bye marco
"Raymond Tam" <rtam@omac.com> schrieb im Newsbeitrag
news:02f301c35b97$b07f06d0$a501280a@phx.gbl...> When I am using server-side button to switch from https to
> http by using response.redirect "http://a.apsx" in
> response to the client event, I am still at the https
> environment (ie. the address bar on the IE is
> [url]https://a.aspx[/url]). However, when using hyperlink control,
> there is no mis-representation.
>
> Can anyone advise how to deal with this? Is it .NET bug?
>
Marco Scheel Guest



Reply With Quote

