SSL on single page within ASP.NET application?

B

Ben Fidge

Is is possible to make just a single page within an ASP.NET application use
SSL?

I've written an e-commerce application and want to make just the checkout
page use SSL for secure transmission.

If it's not possible to do this, and I have to put the checkout page in it's
own application, what's the best way to pass data between the two
applications? If at all possible, I'd like to avoid using querystrings.

Thanks

Ben
 
H

Hans Kesting

Ben said:
Is is possible to make just a single page within an ASP.NET
application use SSL?

I've written an e-commerce application and want to make just the
checkout page use SSL for secure transmission.

If it's not possible to do this, and I have to put the checkout page
in it's own application, what's the best way to pass data between the
two applications? If at all possible, I'd like to avoid using
querystrings.
Thanks

Ben

Session is out: the SSL part is a different application from the non-SSL part.
(even if it's possible to have both in a single application, the *browser* treats
the SSL site as different, and will not send the session-cookie).

A shared Database is a good option, pass a GUID (difficult to guess correctly)
in the querystring to point to the correct data.

Hans Kesting
 

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

Top