作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 mvc 项目,我想在 Controller 中编写内部 html 代码。在 ASP.NET Web 表单中,我们执行以下操作:
设计
<div id = "DivDynamic" runat ="server" >
</div><br>
在源代码中
DivDynamic.InnerHtml = "<div id ="div1"> <h1> Its Heading </h1> </div>"
如何在 MVC 4 的 Controller 中编写 View 的内部 html 代码?
最佳答案
有很多可能的解决方案,在 Controller 中:
public ActionResult Index()
{
ViewData["myInnerHtml"] = "<div id =\"div1\"> <h1> Its Heading </h1> </div>";
return View();
}
在 View 中:
<div id = "DivDynamic" >
@(new HtmlString(ViewData["myInnerHtml"].ToString()))
</div>
Ofc你必须检查ViewData["myInnerHtml"]是否为空
关于asp.net-mvc - 如何在 Controller mvc 中为 View 编写内部 html 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24239221/
我是一名优秀的程序员,十分优秀!