How do I render HTML from the Viewbag using MVC3 Razor

自作多情 提交于 2019-11-28 20:44:51

问题


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


回答1:


Use @Html.Raw(ViewBag.Mydata).




回答2:


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.



来源:https://stackoverflow.com/questions/7756464/how-do-i-render-html-from-the-viewbag-using-mvc3-razor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!