Is there a risk in using @Html.Raw? It seems to me there shouldn't be. If there is a risk then wouldn't that risk already exist regardless of using @Html.Raw in that modern browsers such as Chrome will allow an edit injection of <script>malicious()</script> or even to change a form's post action to something else.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
|
|||
|
|
|
If you are displaying user entered information it is better to use @Html.Encode(). In another words, if you are |
|||||
|
|
Correct, the risk is in how it is used. There's no risk inherent in |
|||||
|

