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.:

 &lt;type="hidden" name="example" value="examplevalue"&gt; 

So my question is how do I get Razor to do the equivalent of older:

<%= myData %>

and not replace the <>

Thanks Paul

link|improve this question
You should mark an answer as accepted, to close this post.. – Yngve B. Nilsen Oct 13 '11 at 18:20
feedback

2 Answers

up vote 8 down vote accepted

Use @Html.Raw(Viewbag.Mydata).

link|improve this answer
Thanks very much – Sunrise Oct 13 '11 at 15:35
You're welcome :) Now mark one of these answers as accepted. :) – Yngve B. Nilsen Oct 14 '11 at 17:43
feedback

This should do the job

 @Html.Raw((String)ViewBag.myData)

MSDN: This method wraps HTML markup using the IHtmlString class, which renders unencoded HTML.

You need to be careful with accepting and displaying un-encoded HTML.

link|improve this answer
Thanks very much. The HTML will be a payment processor pre-post encryption so should be fine. Thanks – Sunrise Oct 13 '11 at 15:36
You are welcome =) – CodeWorks Oct 13 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.