ASP.NET MVC HTML 幫助器
asp.net mvc - html 幫助器
html 幫助器用于修改 html 輸出。
html 幫助器
通過 mvc,html 幫助器類似于傳統的 asp.net web form 控件。
就像 asp.net 中的 web form 控件,html 幫助器用于修改 html。但是 html 幫助器是更輕量級的。與 web form 控件不同,html 幫助器沒有事件模型和視圖狀態。
在大多數情況下,html 幫助器僅僅是一個返回字符串的方法。
通過 mvc,您可以創建您自己的幫助器,或者直接使用內建的 html 幫助器。
標準的 html 幫助器
mvc 包含了大多數常用的 html 元素類型的標準幫助器,比如 html 鏈接和 html 表單元素。
html 鏈接
呈現 html 鏈接的最簡單的方法是使用 html.actionlink() 幫助器。
通過 mvc,html.actionlink() 不連接到視圖。它創建一個連接到控制器操作。
razor 語法:
@html.actionlink("about this website", "about")
asp 語法:
<%=html.actionlink("about this website", "about")%>
第一個參數是鏈接文本,第二個參數是控制器操作的名稱。
上面的 html.actionlink() 幫助器,輸出以下的 html:
<a href="/home/about">about this website</a>
html.actionlink() 幫助器的一些屬性:
屬性 | 描述 |
---|---|
.linktext | url 文本(標簽),定位點元素的內部文本。 |
.actionname | 操作(action)的名稱。 |
.routevalues | 傳遞給操作(action)的值,是一個包含路由參數的對象。 |
.controllername | 控制器的名稱。 |
.htmlattributes | url 的屬性設置,是一個包含要為該元素設置的 html 特性的對象。 |
.protocol | url 協議,如 "http" 或 "https"。 |
.hostname | url 的主機名。 |
.fragment | url 片段名稱(定位點名稱)。 |
注釋:您可以向控制器操作傳遞值。例如,您可以向數據庫 edit 操作傳遞數據庫記錄的 id:
razor 語法 c#:
@html.actionlink("edit record", "edit", new {id=3})
razor 語法 vb:
@html.actionlink("edit record", "edit", new with{.id=3})
上面的 html.actionlink() 幫助器,輸出以下的 html:
<a href="/home/edit/3">edit record</a>
html 表單元素
以下 html 幫助器可用于呈現(修改和輸出)html 表單元素:
- beginform()
- endform()
- textarea()
- textbox()
- checkbox()
- radiobutton()
- listbox()
- dropdownlist()
- hidden()
- password()
asp.net 語法 c#:
<%= html.validationsummary("create was unsuccessful. please correct the
errors and try again.") %>
<% using (html.beginform()){%>
<p>
<label for="firstname">first name:</label>
<%= html.textbox("firstname") %>
<%= html.validationmessage("firstname", "*") %>
</p>
<p>
<label for="lastname">last name:</label>
<%= html.textbox("lastname") %>
<%= html.validationmessage("lastname", "*") %>
</p>
<p>
<label for="password">password:</label>
<%= html.password("password") %>
<%= html.validationmessage("password", "*") %>
</p>
<p>
<label for="password">confirm password:</label>
<%= html.password("confirmpassword") %>
<%= html.validationmessage("confirmpassword", "*") %>
</p>
<p>
<label for="profile">profile:</label>
<%= html.textarea("profile", new {cols=60, rows=10})%>
</p>
<p>
<%= html.checkbox("receivenewsletter") %>
<label for="receivenewsletter" style="display:inline">receive newsletter?</label>
</p>
<p>
<input type="submit" value="register" />
</p>
<%}%>
<% using (html.beginform()){%>
<p>
<label for="firstname">first name:</label>
<%= html.textbox("firstname") %>
<%= html.validationmessage("firstname", "*") %>
</p>
<p>
<label for="lastname">last name:</label>
<%= html.textbox("lastname") %>
<%= html.validationmessage("lastname", "*") %>
</p>
<p>
<label for="password">password:</label>
<%= html.password("password") %>
<%= html.validationmessage("password", "*") %>
</p>
<p>
<label for="password">confirm password:</label>
<%= html.password("confirmpassword") %>
<%= html.validationmessage("confirmpassword", "*") %>
</p>
<p>
<label for="profile">profile:</label>
<%= html.textarea("profile", new {cols=60, rows=10})%>
</p>
<p>
<%= html.checkbox("receivenewsletter") %>
<label for="receivenewsletter" style="display:inline">receive newsletter?</label>
</p>
<p>
<input type="submit" value="register" />
</p>
<%}%>