URL Helper:-

Url helpers are similar to ActionLink/RouteLink helper, but instead of returning the html, they build URL and return the URL as string.

            
@Url.Action("About","Home",new {paramEmpId="12"},null)
            
            

Result:

/Home/About?paramEmpId=12

Output: