jQuery and ASP.NET

March 17, 2009

Access Session Variables in an ASP.NET Custom HttpHandler




If session state is required in your HTTP handler, you need to implement the IRequiresSessionState interface.

The IRequiresSessionState is a marker interface which is empty without any methods or elements in it and gives read/write access to Sessions. A Marker interface like this one just informs the runtime that a certain feature is to be enabled.

On the other hand, if you require only a read only access to Session, use the IReadOnlySessionState which is also a marker interface.

C#


public class MyHandler : IHttpHandler, IRequiresSessionState


{


    //  Use Session now


}




VB.NET


Public Class MyHandler


    Implements IHttpHandler, IRequiresSessionState


    '  Use Session now


End Class




'Like' us on our FaceBook page if you find this blog useful. Thanks!


Did you like this post?
kick it on DotNetKicks.com Save on Delicious
subscribe via rss subscribe via e-mail
print this post follow me on twitter


About The Author

Suprotim Agarwal, ASP.NET Architecture MVP works as an Architect Consultant and provides consultancy on how to design and develop Web applications.

Suprotim is also the founder and primary contributor to DevCurry, DotNetCurry and SQLServerCurry. He has also written an EBook 51 Recipes using jQuery with ASP.NET Controls.

Follow him on twitter @suprotimagarwal

comments

0 Responses to "Access Session Variables in an ASP.NET Custom HttpHandler"
 

Copyright © 2009-2011 All Rights Reserved for DevCurry.com by Suprotim Agarwal | Terms and Conditions