這篇文章主要介紹了MVC3中輔助方法怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:空間域名、虛擬主機、營銷軟件、網(wǎng)站建設(shè)、周寧網(wǎng)站維護、網(wǎng)站推廣。
1,
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;" })
生成標簽:
2,
特殊屬性(class:c#保留關(guān)鍵字)
@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中輔助方法怎么用”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!