I am trying to pass a form element into an MVC3 view by using the Viewbag and simply write the HTML to the page ...
In controller:
ViewBag.myData = "<input type=""hidden"" name=""example"" value=""examplevalue"">";
In view (I know I could use a helper for the form):
<form action="http://exampleurl/examplepage" method="post" id="example-form">
@ViewBag.myData
<input type="hidden" name="anotherexample" value="anotherexamplevalue" />
</form>
This renders the myData as text in the HTML i.e.:
<type="hidden" name="example" value="examplevalue">
So my question is how do I get Razor to do the equivalent of older:
<%= myData %>
and not replace the <>
Thanks Paul
Use @Html.Raw(ViewBag.Mydata)
.