472,331 Members | 1,902 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,331 software developers and data experts.

redirect from https to http w/o security warning

I'm sending users to a secure page https to fill out a registration form.
When they're done I show a thank you page. I need to return the user to http
mode after filling out the form.

If I use response.redirect I get a security warning when transitioning from
https to http. Is there an accepted way to avoid having the user see this?

Thanks.
Apr 27 '06 #1
5 3530
Have you tried using Server.transfer instead? that way the url may remain
the same and you will not have the issue.
--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:B6**********************************@microsof t.com...
I'm sending users to a secure page https to fill out a registration form.
When they're done I show a thank you page. I need to return the user to
http
mode after filling out the form.

If I use response.redirect I get a security warning when transitioning
from
https to http. Is there an accepted way to avoid having the user see this?

Thanks.

Apr 27 '06 #2

No that will only delay the ineviteable, as they can choose other pages from
the main navigation which don't use transfer or redirect.

"Swanand Mokashi" wrote:
Have you tried using Server.transfer instead? that way the url may remain
the same and you will not have the issue.
--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:B6**********************************@microsof t.com...
I'm sending users to a secure page https to fill out a registration form.
When they're done I show a thank you page. I need to return the user to
http
mode after filling out the form.

If I use response.redirect I get a security warning when transitioning
from
https to http. Is there an accepted way to avoid having the user see this?

Thanks.


Apr 27 '06 #3
Ok -- I thought you just needed it for this page.

The warning message when you move from https to http is by design on the
browser. You don't want to override that behavior

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:50**********************************@microsof t.com...

No that will only delay the ineviteable, as they can choose other pages
from
the main navigation which don't use transfer or redirect.

"Swanand Mokashi" wrote:
Have you tried using Server.transfer instead? that way the url may remain
the same and you will not have the issue.
--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:B6**********************************@microsof t.com...
> I'm sending users to a secure page https to fill out a registration
> form.
> When they're done I show a thank you page. I need to return the user to
> http
> mode after filling out the form.
>
> If I use response.redirect I get a security warning when transitioning
> from
> https to http. Is there an accepted way to avoid having the user see
> this?
>
> Thanks.


Apr 27 '06 #4
I've seen many websites that allow you to go from https to http without the
popup.
"Swanand Mokashi" <sw***********@swanandmokashi.com> wrote in message
news:eU**************@TK2MSFTNGP04.phx.gbl...
Ok -- I thought you just needed it for this page.

The warning message when you move from https to http is by design on the
browser. You don't want to override that behavior

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:50**********************************@microsof t.com...

No that will only delay the ineviteable, as they can choose other pages
from
the main navigation which don't use transfer or redirect.

"Swanand Mokashi" wrote:
Have you tried using Server.transfer instead? that way the url may
remain
the same and you will not have the issue.
--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:B6**********************************@microsof t.com...
> I'm sending users to a secure page https to fill out a registration
> form.
> When they're done I show a thank you page. I need to return the user
> to
> http
> mode after filling out the form.
>
> If I use response.redirect I get a security warning when transitioning
> from
> https to http. Is there an accepted way to avoid having the user see
> this?
>
> Thanks.


Apr 27 '06 #5
That's because they don't include both secure and non-secure items in the same page.

The warning is only sent when both secure
and non-secure items are included in the same page.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jeff Dillon" <je********@hotmail.com> wrote in message
news:uQ**************@TK2MSFTNGP03.phx.gbl...
I've seen many websites that allow you to go from https to http without the popup.
"Swanand Mokashi" <sw***********@swanandmokashi.com> wrote in message
news:eU**************@TK2MSFTNGP04.phx.gbl...
Ok -- I thought you just needed it for this page.

The warning message when you move from https to http is by design on the browser. You don't want
to override that behavior

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:50**********************************@microsof t.com...

No that will only delay the ineviteable, as they can choose other pages from
the main navigation which don't use transfer or redirect.

"Swanand Mokashi" wrote:

Have you tried using Server.transfer instead? that way the url may remain
the same and you will not have the issue.
--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Dabbler" <Da*****@discussions.microsoft.com> wrote in message
news:B6**********************************@microsof t.com...
> I'm sending users to a secure page https to fill out a registration form.
> When they're done I show a thank you page. I need to return the user to
> http
> mode after filling out the form.
>
> If I use response.redirect I get a security warning when transitioning
> from
> https to http. Is there an accepted way to avoid having the user see this?
>
> Thanks.



Apr 27 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: deko | last post by:
I have a login page that is supposed to redirect the user to his private page after login. But header("Location: $url") does not work after I set...
2
by: Robert Gordon | last post by:
I now realize I probably should have tried posting this on the IIS board first.. I am running OWA 2003 Server as Front End server to my Exchange...
5
by: Larry Woods | last post by:
I am losing Session variables, but only those that are set in the page previous to a redirect to a secure page. Anyone seen ANY situation where...
14
by: Peter Chant | last post by:
I'm currently authenticating a site I have built using basic http authentication built into apache. This has zero overhead on php which is a bonus...
5
by: Hatim Ali | last post by:
Hello folks, I've integrated my ASP.NET website with a portal on web. My website opens in a frame provided by the web portal. The portal uses...
1
by: E | last post by:
I have a login page that's https and after logging in should redirect to the home page http://www.example.com <form id="Form1" method="post"...
0
by: Jeyakumar | last post by:
Hi, I am using following code to avoid security warning when switch from pageA(https) to PageB (http). 'Output a redirector for the needed...
7
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I am trying to set this up using asp code and IIS configuration. But it seems not working. Here it is the way I am doing. In IIS I set up...
3
by: Sarah | last post by:
I was wondering if someone might be able to help me with this issue. I have a feeling this has something to do with my host's server settings as I...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.