I have two web sites: one built with aspx and the other built with php.
Both apps have a log in system. I need it so that the user can log in to the php site and when they visit the aspx site they continue being logged in and vice versa. So basically a log in that works for both different sites. How do I develop this?
I have two web sites: one built with aspx and the other built with
Share
Three thoughts come to mind:
.NET typically stores login in a cookie, you could update the forms auth to save a cookie for your other site and update the other site to do the same. Then have each site look for the cookie.
Save your sessions in a database and then have each site hit the same sessions database.
Use something like memcache to save sessions and have each site read from there.