I have a model that has a property like "SomeUrl", it's an absolute url with some parameters in it, something like this for example: http://www.someexternalsite.com/q?param1=value1¶m2=value2
My view takes a List and I am trying to use these url's in an anchor tag like this:
<a href="@Model.SomeUrl">my link</a>
The url is being encoded and ends up coming out like this:
http://www.someexternalsite.com/q?param1=value1&param2=value
How do I stop it from doing that?