Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

asp.net - Share session between ashx and aspx

I have an ashx file (implementing the IRequiresSessionState interface) storing a value to session state like so:

context.Session.Add("answer", _answer);

In the code-behind of the aspx file which triggers the ashx call I try to access the session variable like so:

Context.Session["answer"].ToString()

and I get a NullReferenceException.

How do I need to go about writing and reading from session state in this context?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I susspect that the issue is on url name and in the setup of your cookies on the session, because if you have place the IRequiresSessionState interface you sould read the session.

Go to your web.config and set your domain name on the httpCookies as your name of your domain with out the 'www'.

<httpCookies domain="domainname.com" .... />

This way your page reads the cookie and the session ether you call it from domainname.com, ether www.domainname.com.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...