本文介绍了ASP.NET 4 WebForms路由-获取处理请求的物理页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设您具有以下 PageRoute

routes.MapPageRoute("support", "support", "~/Support.aspx");

可以通过以下URL: http://www.domain .com / support 了解哪个物理页面处理了请求? ( support.aspx

Is is possible by the following url: http://www.domain.com/support to understand which is the physical page handling the request? (support.aspx)

推荐答案

请求.Url.LocalPath.ToString()在请求此路由时返回 / Support.aspx

Request.Url.LocalPath.ToString() returns "/Support.aspx" when this route is being requested.

这篇关于ASP.NET 4 WebForms路由-获取处理请求的物理页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 19:46