State management between ASP and ASP.NET

Last post 08-28-2008 3:32 AM by ragsofblr. 1 replies.

Sort Posts:

  • State management between ASP and ASP.NET

    08-28-2008, 12:51 AM
    • Member
      point Member
    • shyju
    • Member since 08-27-2008, 6:30 PM
    • Posts 4

     

    Dear Techies,

    Please help me to tackle this issue

     

    We are accessing ASP.NET file from a classic ASP file. After that we are accessing an ASP file from the same ASP.NET file, it is destroying all the application and server variables of the Classic ASP. It is happening only in Windows 2003 Server.

     

    Any threads???

     

  • Re: State management between ASP and ASP.NET

    08-28-2008, 3:32 AM
    Answer
    • Member
      470 point Member
    • ragsofblr
    • Member since 12-21-2007, 5:02 AM
    • Posts 82

    Session state information is stored in memory in ASP script and can't be shared with other applications, such as ASP.NET. Try looking at having the session information in a common location say a SQL server database. This way you can share the session between you classic ASP and ASP.NET application. Further use a cookie to store the session id and use this in all your pages to identify the session and later fetch the info from the database.

     

    Hope this helps

     

    Raghu

Page 1 of 1 (2 items)