linking asp and asp.net applicaiton with one sign in

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rambabuk1222
    New Member
    • Mar 2010
    • 2

    linking asp and asp.net applicaiton with one sign in

    I have a asp.net web application and one asp appliation which are hosted on different places.now i will login to asp application. within that asp application i have a link which will open the asp.net applicaitno home page in pop up window without need of sign in again along with full security.

    can u please help me to solve this problem.
  • ThatThatGuy
    Recognized Expert Contributor
    • Jul 2009
    • 453

    #2
    when you login to Your ASP application save the user name and password in Cookies... and from asp.net application check for the right user name and password... from Cookies and then authenticate the user

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      Oh my, never save a password in a cookie. Cookies exist client-side which means that they can be viewed and/or modified and this is never a good thing.

      Using Cookies to solve this problem is a good idea though...just don't store the password in there.

      I think I would recommend that you set your staring page to be the ASP.NET log-in page instead of using the classic ASP site to do the log-in. This way you can take advantage of ASP.NET Authentication and then somehow set a token for your ASP classic site to check for as well.

      -Frinny

      Comment

      Working...