這篇文章主要介紹了MVC3中輔助方法怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:空間域名、虛擬主機(jī)、營銷軟件、網(wǎng)站建設(shè)、周寧網(wǎng)站維護(hù)、網(wǎng)站推廣。
1,
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;" })
生成標(biāo)簽:
<input id="txt" name="txt" type="text" value="hello" />
2,
特殊屬性(class:c#保留關(guān)鍵字)
@Html.TextBox("txt", "hello", new { style = "width:1000px;height:1000px;",@class="aa" })
生成標(biāo)簽:
<input class="aa" id="txt" name="txt" type="text" value="hello" />
3,
帶連接字符的屬性(例如:data_result)
@Html.TextArea("text", "hello", new { data_result ="data"})
生成標(biāo)簽:
<textarea cols="20" data-result="data" id="text" name="text" rows="2">hello</textarea>
4,
@using (Html.BeginForm()) { <input type="submit" value="Create" /> }
生成標(biāo)簽:
<form action="/storemanager" method="post">
<input type="submit" value="Create" />
</form>
==================添加輸入元素
----@Html.TextBox
@Html.TextBox("Title", string.Empty) //單行輸入
生成標(biāo)簽:
<input id="Title" name="Title" type="text" value="" />
----@Html.TextArea
@Html.TextArea("Title", string.Empty) //多行輸入
生成標(biāo)簽:
<textarea cols="20" id="Title" name="Title" rows="2">
----@Html.Label
@Html.Label("Title","請輸入:")
生成標(biāo)簽:
<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> }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“MVC3中輔助方法怎么用”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
網(wǎng)站欄目:MVC3中輔助方法怎么用
URL鏈接:http://m.newbst.com/article2/gsosic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號、ChatGPT、微信小程序、網(wǎng)站設(shè)計公司、營銷型網(wǎng)站建設(shè)、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)