Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ASP.NET Razor 网站(不是 MVC)中有一个自定义视图页面类。我需要做的是确定父页面中的子页面。有没有办法确定这一点?
谢谢
我不知道这是否可以使用,但您可能可以。
var pageHierachy = HttpContext.Current.Request.Path;
它将获取您当前所在页面的路径。您也许可以玩弄它以使其完全按照您的意愿行事。
祝你好运 :)