I have written code to get the path to the controller. Here it is:
string link = Url.Action(
(string)RouteData.Values["Login"],
(string)RouteData.Values["Clients"],
Request.Url.Scheme);
But it returns :/Clients/Sending?Length=4
I need to return the full path
For example: http://localhost:51542/Clients/Sending?Length=4
How I can do this?