ashx 为一般处理程序,多用ajax post 请求后输出 http://blog.csdn.net/goodshot/article/details/8165821
ashx通常是实现IHttpHandler接口,因为不必继承自Page类,所以没有那么多事件需要处理,不必消耗太多资源,所以性能方面要比aspx高
可以这样写。注意加参数是否为空 判断
还有write后。需要Response.end();
http://www.cnblogs.com/AngelLee2009/archive/2013/09/24/3336847.html
http://blog.csdn.net/feng_zhenrong/article/details/6985828