重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要介绍了MVC3中辅助方法怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
目前成都创新互联公司已为上千多家的企业提供了网站建设、域名、网页空间、网站托管运营、企业网站设计、闽清网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。1,
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;" })
生成标签:
2,
特殊属性(class:c#保留关键字)
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;",@class="aa" })
生成标签:
3,
带连接字符的属性(例如:data_result)
@Html.TextArea("text", "hello", new { data_result ="data"})
生成标签:
4,
@using (Html.BeginForm()) { }
生成标签:
==================添加输入元素
----@Html.TextBox
@Html.TextBox("Title", string.Empty) //单行输入
生成标签:
----@Html.TextArea
@Html.TextArea("Title", string.Empty) //多行输入
生成标签:
----@Html.Label
@Html.Label("Title","请输入:")
生成标签:
---- @Html.DropDownList
控制器代码:
public ActionResult Create2() { //单选 集合 ,值字段,文本字段,选定的值 ViewBag.Genre = new SelectList(db.Genres, "GenreId", "Name",1); return View(); }
视图代码:
@Html.DropDownList("Genre",string.Empty)
---- @Html.ListBox(可以多项选择)
@{ Listlistbox = new List (); listbox.Add("a"); listbox.Add("b"); listbox.Add("c"); } @Html.ListBox("listitem", new SelectList(listbox,"a"))
控制器代码:
//public ActionResult Create2() { //单选 集合 ,值字段,文本字段,选定的值 ViewBag.Genre = new SelectList(db.Genres, "GenreId", "Name",1); //多选 ViewBag.Genre2 = new MultiSelectList(db.Genres, "GenreId", "Name", new List() { "1", "2" }); return View(); }
视图代码:
@Html.ListBox("Genre") @Html.ListBox("Genre2")
----@Html.ValidationMessage()
控制器代码:
public ActionResult Create3() { return View(); } [HttpPost] public ActionResult Create3(string text) { if (string.IsNullOrEmpty(text)) { ModelState.AddModelError("text", "错误"); return View(); } else { return RedirectToAction("Index"); } }
视图代码:
@{ ViewBag.Title = "Create3"; }Create3
@using (Html.BeginForm()) {
感谢你能够认真阅读完这篇文章,希望小编分享的“MVC3中辅助方法怎么用”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。