Asp.Net Session is null in ashx file

You have to “implement” either IRequiresSessionState or IReadOnlySessionState, with former providing full access to session, and the latter providing read-only access.

I’m quoting “implement” here because these two are so-called “marker interfaces“, which means they have no members.

Leave a Comment