2
Reply

Generate a valid querystring in MVC

Joy Banerjee

Joy Banerjee

Nov 8 2017 2:32 AM
117
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 -
  1. 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.. 

Answers (2)