为什么*.ashx一般处理程序不能访问Session值?

ASP.NET WebHandler实践
本文介绍了一个使用C#实现的ASP.NET WebHandler示例代码,该Handler用于处理不同模块请求,如获取产品类型列表、根据ID获取公司信息及插入新产品等操作。通过具体的代码实例展示了如何使用WebHandler进行数据交互。
<%@ 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;
[b]using System.Web.SessionState;[/b]

public class productHandler : IHttpHandler, [b]IRequiresSessionState, IReadOnlySessionState[/b]{

public void ProcessRequest (HttpContext context) {
string moduleId = context.Request.Form["moduleId"].ToString();
string message = "";
switch (moduleId)
{
case "getPTypeList":
IList<ProductTypeIdNameEntity> list = ProductTypeBS.GetPTypeListIdName();
message = JavaScriptConvert.SerializeObject(list);
break;
case "getCompanyById":
[b]int cid = Convert.ToInt32(context.Session["cid"]);[/b] CompanyEntity company = CompanyBS.GetCompanyEntyById(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("商品添加失败!");
}
break;
}
context.Response.ContentType = "text/javascript";
context.Response.Write(message);
}

public bool IsReusable {
get {
return false;
}
}

}


只需要加上黑体部分的接口就好了!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值