I am trying to bypass the route value encoding that Html.ActionLink does, when processed on Server. For example I Have following ActionLink
@Html.ActionLink("Edit", "_SoftwareRequestEdit", "SoftwareRequest", new {id = "#= Id #"}, null)
and it generates a link like this
<a href="/Admin/SoftwareRequest/_SoftwareRequestEdit/%23%3d%20Id%20%23">Edit</a>
but I wan't to send this to the browser instead
<a href="/Admin/SoftwareRequest/_SoftwareRequestEdit/#= Id #">Edit</a>
The "#= Id #" route value has to be sent to the browser as it is, because it is processed by a front end framework Kendo UI Web, which replaces the expression "#= Id #" by a corresponding integer value.