public void ProcessRequest(HttpContext context){string path = context.Request.Path;int ind = path.LastIndexOf('.');string newpath = path.Substring(0, ind );string detayadi = context.Request.QueryString["adi"];newpath = newpath + "/" + detayadi;context.RewritePath(newpath);IHttpHandler hnd = PageParser.GetCompiledPageInstance(newpath, null, context);hnd.ProcessRequest(context);}
<httpHandlers><add verb="*" path="*/detay.aspx" type="MyHandler.UrlHandler,MyHandler" validate="true"/></httpHandlers>