I need to include the following into my page
//@@ sourceUrl=MoveReservation.js
(which should be become //@ sourceUrl=MoveReservation.js)
The problem is that this gets wrapped in quotes by the Razor engine. I tried using @: but tht didn’t work and neither does <text></text>.
So how would I put something like this into the page?
Unless told otherwise, the Razor View Engine will HTML encode any text that it outputs.
You can use @Html.Raw to output a string without it being HTML Encoded