Reputation: 20633
I have following Url:
customer/login?ReturnUrl=home
How can I get this string in my view? I tried
RouteData.GetRequiredString("action")
But it does not return full string. Any help will be appreciated.
Upvotes: 14
Views: 23175
Reputation: 12894
Use the HttpRequest.Url.PathAndQuery Property to retrieve the absolute path and query like so:
<%= Request.Url.PathAndQuery %>
Upvotes: 28