473,385 Members | 2,028 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 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 3599
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 the $_SESSION variable - I get "Warning: Cannot...
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 2000 native domain. The FE server is secured by...
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 Session variables just "disappear?" Note that...
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 but it seems to not quite work how I'd like. ...
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 https protocol. Now when i open my website IE...
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" runat="server"> No matter what I've tried it tries...
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 page to avoid a security warning. Response.Clear()...
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 a virtual directory with secure communication, I...
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 used to be able to get CURL to follow redirects by...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

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.