ashx文件和aspx文件区别
摘要:
ashx文件是.net 2.0新加的文件类型(其实在.net 1.0下已经可用,但是没有公开提供).ashx文件和aspx文件有什么不同? 我们先新建一个ashx文件看看:<%@ WebHandler Language="C#" Class="Handler" %>using System;using System.Web;public class Handler : IHttpHandler {public void ProcessRequest (HttpContext context) {context.Response.Content 阅读全文
posted @ 2011-12-02 09:44 老戴学代码 阅读(3320) 评论(0) 推荐(0) 编辑