I am stuck with this problem where I need to send an url in below format -
http://localhost:55736/user/viewinfo?userid=569EF26&id=0041
I am using the following code -
- string url = Url.Action("viewinfo", "user", new RouteValueDictionary(new { id = Convert.ToInt32(id), userId = userId }),HttpContext.Request.Url.Scheme,HttpContext.Request.Url.Host);
This code generates the url like -
http://localhost:55736/user/viewinfo/569EF26....
Any suggestions how can I improve this??
Thanks..