- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace MyGenericHandler
- {
- ///
- /// Summary description for $codebehindclassname$
- ///
- public class Handler : IHttpHandler, System.Web.SessionState.IRequiresSessionState
- {
- public void ProcessRequest(HttpContext context)
- {
- context.Session.Add("myVal", context.Request["myVal"]);
- }
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
- }
- }
No comments:
Post a Comment