您好,登錄后才能下訂單哦!
這篇文章主要介紹了MVC3中輔助方法怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
1,
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;" })
生成標簽:
<input id="txt" name="txt" type="text" value="hello" />
2,
特殊屬性(class:c#保留關鍵字)
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;",@class="aa" })
生成標簽:
<input class="aa" id="txt" name="txt" type="text" value="hello" />
3,
帶連接字符的屬性(例如:data_result)
@Html.TextArea("text", "hello", new { data_result ="data"})
生成標簽:
<textarea cols="20" data-result="data" id="text" name="text" rows="2">hello</textarea>
4,
@using (Html.BeginForm()) { <input type="submit" value="Create" /> }
生成標簽:
<form action="/storemanager" method="post">
<input type="submit" value="Create" />
</form>
==================添加輸入元素
----@Html.TextBox
@Html.TextBox("Title", string.Empty) //單行輸入
生成標簽:
<input id="Title" name="Title" type="text" value="" />
----@Html.TextArea
@Html.TextArea("Title", string.Empty) //多行輸入
生成標簽:
<textarea cols="20" id="Title" name="Title" rows="2">
----@Html.Label
@Html.Label("Title","請輸入:")
生成標簽:
<label for="Title">請輸入:</label>
---- @Html.DropDownList
控制器代碼:
public ActionResult Create2() { //單選 集合 ,值字段,文本字段,選定的值 ViewBag.Genre = new SelectList(db.Genres, "GenreId", "Name",1); return View(); }
視圖代碼:
@Html.DropDownList("Genre",string.Empty)
---- @Html.ListBox(可以多項選擇)
@{ List<string> listbox = new List<string>(); 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<string>() { "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"; } <h3>Create3</h3> @using (Html.BeginForm()) { <li>@Html.TextBox("text")</li> <li>@Html.ValidationMessage("text")</li> <li><input type="submit" value="提交" /></li> }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“MVC3中輔助方法怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。