string DetailedList(HttpContext context) { int cid = Atom.Helper.StrToInt(context.Request["cid"], 1); T_BASE_SEACHLABLE model = new T_BASE_SEACHLABLE(); T_BASE_SEACHLABLEAPPS models = new T_BASE_SEACHLABLEAPPS(); var data = new DbFactory<T_BASE_SEACHLABLEAPPS>().LoadEntities(c => c.SEACHLABLEID == cid); return ; }
这个是一般处理程序 能写一下代码最好
谁知道你想返回什么啊。。。
应该是一个实体或者什么 我可以让数据在前台显示
@我是一个xiaocainiao: 都不知道你想干嘛,你的方法返回的是string,就返回string
context.Response.Write(data);
前台使用ajax请求,并接受data数据。
然后做dom操作,。
一般处理程序里面的方法通常都是void 的,你得到的数据转化为json字符串,context.Response.Write()输出就好了,前端接收json再做处理