NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: alan on May 22, 2014, 11:05:26 AM

Title: Can a link on a non-secure site send a user to a secure site
Post by: alan on May 22, 2014, 11:05:26 AM
Hi Bruce,

I want to create several related but separate sites.  I have been reading up on building a host exe with dll's for the related sites.  But, I also need to have a secure site that's related.

Can a link on the home page of a non-secure site send the user to a login screen on a secure site?  I'm guessing that, if its possible, it would open a new browser tab for the secure site?

Thanks,

Alan
Title: Re: Can a link on a non-secure site send a user to a secure site
Post by: Bruce on May 23, 2014, 04:13:54 AM
Hi Alan,

>> Can a link on the home page of a non-secure site send the user to a login screen on a secure site?

Absolutely. We link to ClarionShop (which is https) from our Capesoft site (which is http) all over the place.

the key thing to remember here though is that you will go to a new server. So there's no connection between the http site and the https site. No sharing of Session data or anything like that.

>> I'm guessing that, if its possible, it would open a new browser tab for the secure site?

you can _make_ it open in a new tab, but by default it just links over to that page in the same tab.

cheers
Bruce
Title: Re: Can a link on a non-secure site send a user to a secure site
Post by: alan on May 24, 2014, 12:10:22 AM
Thanks Bruce