文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>ASP.NET MVC 使用WebForm

ASP.NET MVC 使用WebForm

时间:2011-02-20  来源:安羽.

// 忽略对 WebForms 路径的路由
routes.IgnoreRoute("WebForms/{subdir}/{page}");
 public class WebFormsRouteHandler:IRouteHandler
{
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{

// 从URL中获取subdir参数
var subdir= requestContext.RouteData.GetRequiredString("subdir");

// 从URL中获取page参数
var page = requestContext.RouteData.GetRequiredString("page");
// 创建实例
// 根据 page 参数拼接成类似/WebForms/account/page.aspx地址来访问WebForms页面
IHttpHandler hander = BuildManager.CreateInstanceFromVirtualPath("/WebForms/"+subdir+"/"+ this.page+".aspx", typeof(System.Web.UI.Page)) as IHttpHandler;
return hander;
}
}
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载