Problem when opening an aspx page from Ms. Word 2000

  • Thread starter Thread starter Jorgen
  • Start date Start date
J

Jorgen

H

We are having problems with the Session_Start function in global.asax. If you call an aspx page from word. The Session_Start is called and that's fine. But if you click on a internal link on the site. The Session_Start is called again!!!!! and you also get a new SessionID
So every session object you have created in the first Session_Start are not availabe for you anymore, because your'e in a new Session

Does anybody else have this problem or have a good solution
This must be a bug in either Ms.Word or in the .NET Framework

Best regard
Jörgen Knutsso
Application/Integration Architec
CSC
 
I have no idea on how to call the aspx page from MS Word.

But most likely the Word does not keep the cookies. Or it launches new IE
instance. So your session is lost.

Anyway the good solution is to use Cookieless session. But you site might
need some tweaking.

George.

Jorgen said:
Hi

We are having problems with the Session_Start function in global.asax. If
you call an aspx page from word. The Session_Start is called and that's
fine. But if you click on a internal link on the site. The Session_Start is
called again!!!!! and you also get a new SessionID.
So every session object you have created in the first Session_Start are
not availabe for you anymore, because your'e in a new Session.
 
Back
Top