如何在 RouteTable MVC.Net 中手动查找路由?
我的一个控制器的操作中有一个字符串,代表引用 URL。当前请求的路由数据不是我正在寻找的(因为它是从另一个视图内的脚本标记调用的)。
我想找到引用 URL 的操作和控制器。
有什么方法可以手动使用“/Product/23”之类的字符串来查找控制器并将该字符串作为 url 产生的操作吗?
I have a String inside the action of one of my controllers that represents a Referring URL. The current request's route data is not what I'm looking for (because it is being called from the script tag inside another view).
I want to find the Action and Controller for the referring Url.
Is there some way can I manually use a string like "/Product/23" to find the controller and action the string as a url would produce?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想使用 MVC 方法,我可以使用它。
If you just want to use the MVC methods I got this to work.