redirect from https to http w/o security warning

G

Guest

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.
 
S

Swanand Mokashi

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
 
G

Guest

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

Swanand Mokashi

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
 
J

Jeff Dillon

I've seen many websites that allow you to go from https to http without the
popup.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top