91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MVC3中輔助方法怎么用

發布時間:2021-10-21 09:53:15 來源:億速云 閱讀:96 作者:小新 欄目:編程語言

這篇文章主要介紹了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)

 MVC3中輔助方法怎么用

---- @Html.ListBox(可以多項選擇)

@{
    List<string> listbox = new List<string>();
    listbox.Add("a");
    listbox.Add("b");
    listbox.Add("c");
 }
 @Html.ListBox("listitem", new SelectList(listbox,"a"))

MVC3中輔助方法怎么用

控制器代碼:

//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")

MVC3中輔助方法怎么用


----@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中輔助方法怎么用

感謝你能夠認真閱讀完這篇文章,希望小編分享的“MVC3中輔助方法怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贺兰县| 平舆县| 光泽县| 星子县| 岳西县| 河曲县| 洛南县| 清涧县| 都昌县| 南涧| 德州市| 容城县| 鹤山市| 柳河县| 普定县| 讷河市| 萨迦县| 于田县| 巴林右旗| 桐乡市| 永丰县| 苍南县| 孟津县| 蒲江县| 遵义市| 黄冈市| 慈利县| 绥化市| 凤翔县| 平江县| 北宁市| 乳源| 大方县| 嘉荫县| 都兰县| 丘北县| 泉州市| 沧州市| 黄冈市| 邢台县| 开平市|