communication between asp.net1.1 and asp.net 2.0

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shashidcs2007
    New Member
    • May 2007
    • 3

    communication between asp.net1.1 and asp.net 2.0

    Hi,

    I have two web applicaitons developed in asp.net 1.1 and asp.net2.0, the user will login to the application developed in asp.net 1.1 and will go to application developed in asp.net 2.0 (this is basically a search page) when the user is thorough with his task he will click on the link on this asp.net 2.0 application . this link should open a page back in the asp.net1.1 application and continue with the same session with which the user had logged into the application.


    Please if any solutions found let me know.


    thanks
    Shashikala G
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    You have a few options:
    1. You can upgrade the .NET 1.1 web app to a 2.0 and place the new web app in the same solution as the Search page.
    2. You can open the Search page in a new window instead of redirecting to the search page from the .NET 1.1 web app.
    3. You will have to pass data from the 2.0 web app to the 1.1 web app and create/instantiate your Session values again.

    I don't know which is best given your development environment.

    Nathan

    Comment

    • shashidcs2007
      New Member
      • May 2007
      • 3

      #3
      Originally posted by nateraaaa
      You have a few options:
      1. You can upgrade the .NET 1.1 web app to a 2.0 and place the new web app in the same solution as the Search page.
      2. You can open the Search page in a new window instead of redirecting to the search page from the .NET 1.1 web app.
      3. You will have to pass data from the 2.0 web app to the 1.1 web app and create/instantiate your Session values again.

      I don't know which is best given your development environment.

      Nathan

      Thanks Nathan..

      the option 1and 2 suggested is not feasible in the current senario.
      I would want to know more about the third option, as you have suggested to instantiate the session values again, is it possible to instantiate the same session from which the search page was opened. if it is possible can i know how.

      Thanks

      Comment

      Working...