How to output ampersand & as part of query string in razor view?
Let's say we have script element and some jquery code inside view:
$.ajax({
url: '[?]',
success: function (content) { $('body').append(content); },
dataType: 'html',
timeout: 30000
But we cannot use something like this @Url.Content("~/my/custom/url?some=1&query=2") as url because ampersand will be decorated...