在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
url重写就是把一些类似article.aspx?id=28的路径 当用户访问article/28/的时候
<?xml version="1.0"?>
<configuration> <system.web> <compilation debug="true"></compilation> <httpHandlers> <add verb="*" path="*.jsp" type="xland.MyHandler" /> </httpHandlers> </system.web> </configuration> verb是指允许的动作“GET”、“POST”、“PUT”中的一种或几种,星号“*”表示全部允许 下面看MyHandler方法
using System;
using System.Collections.Generic; using System.Web;//引用web命名空间 using System.Text; namespace xland { public class MyHandler:IHttpHandler//继承IHttpHandler { public void ProcessRequest(HttpContext context)//实现接口方法 { string path = context.Request.Url.PathAndQuery; int startnum = path.LastIndexOf('/') + 1; string name = path.Substring(startnum); string[] parames = name.Split('-'); string truename = "/"+parames[0]+".aspx"+"?id="+parames[1].Replace(".jsp",""); context.Server.Execute(truename); } public bool IsReusable//实现接口方法 { get { return false; } } } } 我的意图就是把article-49.jsp这样的用户请求
using System;
using System.Collections; using System.Configuration; using System.Da using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; namespace _1 { public partial class article : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Response.Write("接收到的id为" + Request["id"]); } protected void Button1_Click(object sender, EventArgs e) { Response.Write("回传成功"); } } } 我在页面里做了按钮的postback事件,在这里是可以成功执行的
<httpHandlers>
<add verb="*" path="*.jsp" type="xland.MyHandler" /> </httpHandlers> 上面的代码是处理所有的.jsp扩展名的文件
<httpHandlers>
<add verb="*" path="*123.jsp" type="System.Web.UI.PageHandlerFactory" validate="true" /> <add verb="*" path="*.jsp" type="xland.MyHandler" /> </httpHandlers> 把一类文件交还给asp.net处理 |
请发表评论