Question

I have the following code:

@Url.RouteUrl("NewMessage", new { parentThreadId = Model.thread.id, cacheBustParam = currentUserId })

When the page get rendered the page source looks like:

/somepath/newMessage/12345?cacheBustParam=123&param1=value1&param2=value2

As you can see instead of plain ampesands & it places & in the query string params and that makes them unusable. How can i instruct the @Url.RouteUrl not to encode the querystring?

Was it helpful?

Solution

Try using

@Html.Raw(Url.RouteUrl("NewMessage", new { parentThreadId = Model.thread.id, cacheBustParam = currentUserId }))
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top