WebForms使用System.Web.Routing

简介:
老赵同学写过  在Web应用程序开发过程中利用ASP.NET MVC框架的实战技巧 ,Routing现在可以作为URLRewriting技术的替代者,出现在asp.net mvc框架中,将它应用于WebForms上也是很简单的,可以到codeplex上下载 ASP.NET MVC WebFormRouting Demo
实现的原理也是很简单的:
1、创建一个自定义的实例化你的页面的  IRouteHandler
     1: public class WebFormRouteHandler : IRouteHandler {
2: public WebFormRouteHandler(string virtualPath) 3: : this(virtualPath, true) { 4: } 5:  6: public WebFormRouteHandler(string virtualPath, bool checkPhysicalUrlAccess) { 7: if (virtualPath == null) { 8: throw new ArgumentNullException("virtualPath"); 9: } 10:  11: if (!virtualPath.StartsWith("~/")) { 12: throw new ArgumentException("virtualPath must start with a tilde slash: \"~/\"", "virtualPath"); 13: } 14:  15: this.VirtualPath = virtualPath; 16: this.CheckPhysicalUrlAccess = checkPhysicalUrlAccess; 17: } 18:  19: /// <summary> 20: /// This is the full virtual path (using tilde syntax) to the WebForm page. 21: /// </summary> 22: /// <remarks> 23: /// Needs to be thread safe so this is .ly settable via ctor. 24: /// </remarks> 25: public string VirtualPath { get; private set; } 26:  27: /// <summary> 28: /// Because we're not actually rewriting the URL, ASP.NET's URL Auth will apply 29: /// to the incoming request URL and not the URL of the physical WebForm page. 30: /// Setting this to true (default) will apply URL access rules against the 31: /// physical file. 32: /// </summary> 33: /// <value>True by default</value> 34: public bool CheckPhysicalUrlAccess { get; set; } 35:  36: public IHttpHandler GetHttpHandler(RequestContext requestContext) { 37: string virtualPath = GetSubstitutedVirtualPath(requestContext); 38: if (this.CheckPhysicalUrlAccess && !UrlAuthorizationModule.CheckUrlAccessForPrincipal(virtualPath, requestContext.HttpContext.User, requestContext.HttpContext.Request.HttpMethod)) 39: throw new SecurityException(); 40:  41: var page = BuildManager.CreateInstanceFromVirtualPath(virtualPath, typeof(Page)) as IHttpHandler; 42: if (page != null) { 43: //Pages that don't implement IRoutablePage won't have the RequestContext 44: //available to them. Can't generate outgoing routing URLs without that context. 45: var routablePage = page as IRoutablePage; 46: if (routablePage != null) 47: routablePage.RequestContext = requestContext; 48: } 49: return page; 50: } 51:  52: /// <summary> 53: /// Gets the virtual path to the resource after applying substitutions based . route data. 54: /// </summary> 55: /// <param name="requestContext"></param> 56: /// <returns></returns> 57: public string GetSubstitutedVirtualPath(RequestContext requestContext) { 58: if (!VirtualPath.Contains("{")) 59: return VirtualPath; 60:  61: //Trim off ~/ 62: string virtualPath = VirtualPath.Substring(2); 63:  64: Route route = new Route(virtualPath, this); 65: VirtualPathData vpd = route.GetVirtualPath(requestContext, requestContext.RouteData.Values); 66: if (vpd == null) 67: return VirtualPath; 68: return "~/" + vpd.VirtualPath; 69: } 70: }
2、使用自定义的 IRouteHandler注册一个新的Routes
1: public class Global : System.Web.HttpApplication 2: { 3:  4: protected void Application_Start(object sender, EventArgs e) 5: { 6: RegisterRoutes(RouteTable.Routes); 7: } 8:  9: public static void RegisterRoutes(RouteCollection routes) 10: { 11: //We are intentionally creating this backdoor as a demonstration of 12: //bad security practices. 13: routes.MapWebFormRoute("Secret", "BackDoor", "~/Admin/SecretPage.aspx", false); 14: routes.MapWebFormRoute("Blocked", "FrontDoor", "~/Admin/SecretPage.aspx", true); 15:  16: //Even though we are not checking physical url access in this route, it should still block because the incoming 17: //request url would start with /Admin. 18: routes.MapWebFormRoute("Admin", "Admin/{*anything}", "~/Admin/SecretPage.aspx", false); 19:  20: routes.MapWebFormRoute("Named", "foo/bar", "~/forms/blech.aspx"); 21: routes.MapWebFormRoute("Numbers", "one/two/three", "~/forms/haha.aspx"); 22: 23: //Maps any requests for /haha/*.aspx to /forms/hahah.aspx 24: routes.MapWebFormRoute("Substitution", "haha/{filename}", "~/forms/haha.aspx"); 25: } 26: }





本文转自 张善友 51CTO博客,原文链接:http://blog.51cto.com/shanyou/124188,如需转载请自行联系原作者
目录
相关文章
|
1月前
|
XML JSON API
ServiceStack:不仅仅是一个高性能Web API和微服务框架,更是一站式解决方案——深入解析其多协议支持及简便开发流程,带您体验前所未有的.NET开发效率革命
【10月更文挑战第9天】ServiceStack 是一个高性能的 Web API 和微服务框架,支持 JSON、XML、CSV 等多种数据格式。它简化了 .NET 应用的开发流程,提供了直观的 RESTful 服务构建方式。ServiceStack 支持高并发请求和复杂业务逻辑,安装简单,通过 NuGet 包管理器即可快速集成。示例代码展示了如何创建一个返回当前日期的简单服务,包括定义请求和响应 DTO、实现服务逻辑、配置路由和宿主。ServiceStack 还支持 WebSocket、SignalR 等实时通信协议,具备自动验证、自动过滤器等丰富功能,适合快速搭建高性能、可扩展的服务端应用。
101 3
|
16天前
|
设计模式 前端开发 数据库
Python Web开发:Django框架下的全栈开发实战
【10月更文挑战第27天】本文介绍了Django框架在Python Web开发中的应用,涵盖了Django与Flask等框架的比较、项目结构、模型、视图、模板和URL配置等内容,并展示了实际代码示例,帮助读者快速掌握Django全栈开发的核心技术。
103 45
|
12天前
|
前端开发 API 开发者
Python Web开发者必看!AJAX、Fetch API实战技巧,让前后端交互如丝般顺滑!
在Web开发中,前后端的高效交互是提升用户体验的关键。本文通过一个基于Flask框架的博客系统实战案例,详细介绍了如何使用AJAX和Fetch API实现不刷新页面查看评论的功能。从后端路由设置到前端请求处理,全面展示了这两种技术的应用技巧,帮助Python Web开发者提升项目质量和开发效率。
27 1
|
15天前
|
XML 安全 PHP
PHP与SOAP Web服务开发:基础与进阶教程
本文介绍了PHP与SOAP Web服务的基础和进阶知识,涵盖SOAP的基本概念、PHP中的SoapServer和SoapClient类的使用方法,以及服务端和客户端的开发示例。此外,还探讨了安全性、性能优化等高级主题,帮助开发者掌握更高效的Web服务开发技巧。
|
17天前
|
安全 数据库 开发者
Python Web开发:Django框架下的全栈开发实战
【10月更文挑战第26天】本文详细介绍了如何在Django框架下进行全栈开发,包括环境安装与配置、创建项目和应用、定义模型类、运行数据库迁移、创建视图和URL映射、编写模板以及启动开发服务器等步骤,并通过示例代码展示了具体实现过程。
29 2
WK
|
17天前
|
安全 Java 编译器
C++和Java哪个更适合开发web网站
在Web开发领域,C++和Java各具优势。C++以其高性能、低级控制和跨平台性著称,适用于需要高吞吐量和低延迟的场景,如实时交易系统和在线游戏服务器。Java则凭借其跨平台性、丰富的生态系统和强大的安全性,广泛应用于企业级Web开发,如企业管理系统和电子商务平台。选择时需根据项目需求和技术储备综合考虑。
WK
24 0
|
1月前
|
设计模式 测试技术 持续交付
开发复杂Web应用程序
【10月更文挑战第3天】开发复杂Web应用程序
38 2
|
1月前
|
Java PHP
PHP作为广受青睐的服务器端脚本语言,在Web开发中占据重要地位。理解其垃圾回收机制有助于开发高效稳定的PHP应用。
【10月更文挑战第1天】PHP作为广受青睐的服务器端脚本语言,在Web开发中占据重要地位。其垃圾回收机制包括引用计数与循环垃圾回收,对提升应用性能和稳定性至关重要。本文通过具体案例分析,详细探讨PHP垃圾回收机制的工作原理,特别是如何解决循环引用问题。在PHP 8中,垃圾回收机制得到进一步优化,提高了效率和准确性。理解这些机制有助于开发高效稳定的PHP应用。
44 3
|
19天前
|
JavaScript 前端开发 Java
SpringBoot_web开发-webjars&静态资源映射规则
https://www.91chuli.com/ 举例:jquery前端框架
16 0
|
2月前
|
数据可视化 图形学 UED
只需四步,轻松开发三维模型Web应用
为了让用户更方便地应用三维模型,阿里云DataV提供了一套完整的三维模型Web模型开发方案,包括三维模型托管、应用开发、交互开发、应用分发等完整功能。只需69.3元/年,就能体验三维模型Web应用开发功能!
300 8
只需四步,轻松开发三维模型Web应用