ASHX and Session Access relationship

Source: Internet
Author: User

<%@ WebHandler language= "C #" class= "Producthandler"%>

using System;
Using System.Web;
Using Jbtcard.entity.companyentity;
Using Jbtcard.business.companybs;
Using System.Collections.Generic;
Using Newtonsoft.json;
Using System.Web.SessionState;

Public class Producthandler:ihttphandler, IRequiresSessionState, ireadonlysessionstate{
   
    public void ProcessRequest (HttpContext context) {
String moduleid = context.request.form["mo Duleid "].tostring ();
String message = "";
Switch (ModuleID)
{
Case "getptypelist":
ilist<producttypeidnameentity> list = Producttypebs.get Ptypelistidname ();
Message = Web effects convert.serializeobject (list);
break;
Case "Getcompanybyid":
int cid = Convert.ToInt32 (context.session["CID"); companyentity company = Companybs.get Companyentybyid (1);
Message = Javascriptconvert.serializeobject (company);
break;
Case "Insert":
String CoNDIS = context.request.form["Condi"].tostring ();
ProductEntity model = (productentity) javascriptconvert.deserializeobject (CoNDIS, typeof (ProductEntity));

BOOL B = productbs.addproduct (model);
if (b)
{
Message = "{success:true}";
}
Else
{
Throw new Exception ("Product addition failed!") ");
}
Break
}
Context.response.contenttype = "Text/javascript";
Context.Response.Write (message);
}

public bool IsReusable {
get {
return false;
}
}

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.