ASP.NET MVC 应用程序初学者常见问题汇总
Posted mercator
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET MVC 应用程序初学者常见问题汇总相关的知识,希望对你有一定的参考价值。
Q: 如何为html.TextBoxFor控件添加多个属性?
A: @Html.TextBoxFor(m => m.Email, new Dictionary<string, object>() { {"class", "input-material" }, {"data-msg", "Please enter your username" },{ "required", "true"} })
Q: 如何为输出HTML格式的字符串?
A: @Html.Raw(ViewBag.Content)
以上是关于ASP.NET MVC 应用程序初学者常见问题汇总的主要内容,如果未能解决你的问题,请参考以下文章
自学MVC看这里——全网最全ASP.NET MVC 教程汇总