2011年5月30日

在自定义HttpHandler中无法使用Session

摘要: 来源:http://www.cnblogs.com/yesun/archive/2009/07/12/1522084.html一.问题描述:最近需要做一个对特定请求(.report)进行响应的接口,当然是使用实现IHttpHandler来进行处理,实现IHttpHandler接口就必须要实现它的两个方法,ProcessRequest(HttpContext context) 和IsRunable() ,看到在ProcessRequest(HttpContext context) 中有个HttpContext的输入参数,以为通过这个就可以对所有的服务器对象进行使用。不过问题出现了,在这个自定义H 阅读全文

posted @ 2011-05-30 23:31 大宝pku 阅读(338) 评论(0) 推荐(0) 编辑

jquery post method usage(备份)

摘要: function loginCheck(name, pass){ $.post("LoginCheck.ashx", { "name": name, "pass": pass }, function (res) { if (res.error != null) { $("#error").html(res.error); return false; } if (res.name == "null") { $("#error").html("用户名或密码错误!&quo 阅读全文

posted @ 2011-05-30 19:35 大宝pku 阅读(205) 评论(0) 推荐(0) 编辑

c#数据库操作

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data.SqlClient;using System.Configuration;using System.Data;namespace mysite{ public class DatabaseQuery { public static SqlDataReader Select(string sql) { SqlConnection conn = null; SqlCommand cmd = null; 阅读全文

posted @ 2011-05-30 18:36 大宝pku 阅读(312) 评论(0) 推荐(0) 编辑

导航