ASP.NET MVC中HtmlHelper控件7个大类中各个控件使用详解
htmlhelper类在命令system.web.mvc.html之中,主要由7个静态类组成,它们分别是formextensions类,inputextensions类,linkextensions类,selectextensions类,textextensions类,validationextensions类,renderpartialextensions类。
为了方便开发者使用htmlhelper控件,在视图viewpage类中设置了一个属性html它就是htmlhelper类型。
一.formextensions类
定义了3中类型的扩展方法beginform,beginrouteform,endform。
(1) beginform (实现表单定义的开始部分)
重载方法有13个:
beginform();
beginform(object routevalues);
beginform(routevaluedictionary routevalues);
beginform(string actionname,string controllername);
beginform(string actionname,string controllername,object routevalues);
beginform(string actionname,string controllername,routevaluedictionary routevalues);
beginform(string actionname,string controllername,formmethod method);
beginform(string actionname,string controllername,object routevalues,formmethod method);
beginform(string actionname,string controllername,routevaluedictionary routevaues,formmethod method);
beginform(string actionname,string controllername,formmethod method,object htmlattributes);
beginform(string actionname,string controllername,formmethod method,idictionary<string,object> htmlattributes);
beginform(string actionname,string controllername,object routevalues,formmethod method,object htmlattributes);
beginform(string actionname,string controllername,routevaluedictionary routevalues,formmethod method,idictionary<string,object> htmlattributes);
对于第二个重载方法可以设置如下:
html.beginform(new{action="action",controller="actroller",id="2"});
在上述代码中,设置了路由值的一个实例化对象,输出的html语句是:
<form action="actroller/action/2" method="post"/>
对于最后一个第十三个方法的最后一个参数是实例化对象设置相关属性的值例如class,width等。
(2)beginrouteform (主要实现表单定义的开始部分,以路由的方法设置action的值)
有12个重载方法:
beginrouteform(object routevalues);
beginrouteform(routevaluedictionary routevalues);
beginrouteform(string routename);
beginrouteform(string routename,object routevalues);
beginrouteform(string routename,routevaluedictionary routevalues);
beginrouteform(string routename,formmethod method);
beginrouteform(string routename,object routevalues,formmethod method);
……
对于第一个重载方法:
html.beginrouteform(new {action="action"});
<form action="home/action" method="post"/>home是页面所在的目录
beginform与beginrouteform的区别就在于第一个的action是action第二个的action是home/action
(3)endform(实现表单的定义的结束部分)
html.endform();
相当于</form>
二.inputextensions类有5种类型的扩展方法,可在视图中设置checkbox,hidden,password,radiobutton,textbox控件。
(1)checkbox 实现复选框控件有6个重载方法
checkbox(string name);
checkbox(string name,bool ischecked);
checkbox(string name,bool ischecked,object htmlattributes);
checkbox(string name,object htmlattributes);
checkbox(string name,idictionary<string,object> htmlattributes);
checkbox(string name,bool ischecked,idictionary<string,object> htmlattributes);
设置复选框的实现代码:
<%=html.beginform("checkbox","home") %>
<fieldset>
<legend>设置字体:</lengend>
<%=html.checkbox("mycheckbox1",true,new{id="checkbox1"})%>
<label for="checkbox1">黑体</label>
<%=html.checkbox("mycheckbox2",false,new{id="checkbox2"})%>
<label for="checkbox1">斜体</label>
<br/><br/>
<input type="submit" value="submit"/>
</fieldset>
<%html.endform();%>
运行上述代码,上述复选框的设置代码对应的html语句:
<input checked="checked" id="checkbox1" name="mycheckbox1" type="checkbox" value="true"/>
<input name="mycheckbox1" type="hidden" value="false"/>
<input id="checkbox2" name="mycheckbox2" type="checkbox" value="false"/>
<input name="mycheckbox2" type="hidden" value="false"/>
在后台检索checkbox
public actionresult checkbox (formcollection formcollection)
{
bool mycheckbox1=formcollection[0].contains("true");//检索第一个复选框是否被选中
bool mycheckbox2=formcollection["mycheckbox2"].contains("true");//检索名字是mycheckbox2的复选框是否倍选中
viewdata["checkbox1"]=mycheckbox1;
viewdata["checkbox2"]=mycheckbox2;
return view();
}
(2)hidden 表单中的隐藏数值,有4个重载方法。
hidden(string name);
hidden(string name,object value);
hidden(string name,object value,object htmlattributes);
hidden(string name,object value,idictionary<string,object> htmlattributes);
eg:
html.hidden("testname");
对应输出的html语句如下:
<input id="testname" name="testname" type="hidden" value=""/>
(3)password 主要是输入密码的文本框,有4个重载方法。
hidden(string name);
password (string name,object value);
password (string name,object value,object htmlattributes);
password (string name,object value,idictionary<string,object> htmlattributes);
eg:
html.password ("mypwd");
对应输出的html语句如下:
<input id="mypwd" name="mypwd" type="password" />
--------------------------------------------------------------------------------------------
html扩展类的所有方法都有2个参数:
以textbox为例子
public static string textbox( this htmlhelper htmlhelper, string name, object value, idictionary<string, object> htmlattributes )
public static string textbox( this htmlhelper htmlhelper, string name, object value, object htmlattributes )
这2个参数代表这个html标签的属性集合。使用方法如下。
1.actionlink
<%=html.actionlink("这是一个连接", "index", "home")%>
带有querystring的写法
<%=html.actionlink("这是一个连接", "index", "home", new { page=1 },null)%>
<%=html.actionlink("这是一个连接", "index", new { page=1 })%>
有其它html属性的写法
<%=html.actionlink("这是一个连接", "index", "home", new { id="link1" })%>
<%=html.actionlink("这是一个连接", "index",null, new { id="link1" })%>
querystring与html属性同时存在
<%=html.actionlink("这是一个连接", "index", "home", new { page = 1 }, new { id = "link1" })%>
<%=html.actionlink("这是一个连接", "index" , new { page = 1 }, new { id = "link1" })%>
生成结果为:
<a href="/">这是一个连接</a>
带有querystring的写法
<a href="/?page=1">这是一个连接</a>
<a href="/?page=1">这是一个连接</a>
有其它html属性的写法
<a href="/?length=4" id="link1">这是一个连接</a>
<a href="/" id="link1">这是一个连接</a>
querystring与html属性同时存在
<a href="/?page=1" id="link1">这是一个连接</a>
<a href="/?page=1" id="link1">这是一个连接</a>
2.routelink
跟actionlink在功能上一样。
<%=html.routelink("关于", "about", new { })%>
带querystring
<%=html.routelink("关于", "about", new { page = 1 })%>
<%=html.routelink("关于", "about", new { page = 1 }, new { id = "link1" })%>
生成结果:
<a href="/about">关于</a>
<a href="/about?page=1">关于</a>
<a href="/about?page=1" id="link1">关于</a>
3.form 2种方法
<%using(html.beginform("index","home",formmethod.post)){%>
<%} %>
<%html.beginform("index", "home", formmethod.post);//注意这里没有=输出%>
<%html.endform(); %>
生成结果:
<form action="/home/index" method="post"></form>
4.textbox
<%=html.textbox("input1") %>
<%=html.textbox("input2",model.categoryname,new{ @style = "width:300px;" }) %>
<%=html.textbox("input3", viewdata["name"],new{ @style = "width:300px;" }) %>
<%=html.textboxfor(a => a.categoryname, new { @style = "width:300px;" })%>
生成结果:
<input id="input1" name="input1" type="text" value="" />
<input id="input2" name="input2" style="width:300px;" type="text" value="beverages" />
<input id="input3" name="input3" style="width:300px;" type="text" value="" />
<input id="categoryname" name="categoryname" style="width:300px;" type="text" value="beverages" />
5.textarea
<%=html.textarea("input5", model.categoryname, 3, 9,null)%>
<%=html.textareafor(a => a.categoryname, 3, 3, null)%>
生成结果:
<textarea cols="9" id="input5" name="input5" rows="3">beverages</textarea>
<textarea cols="3" id="categoryname" name="categoryname" rows="3">beverages</textarea>
6.checkbox
<%=html.checkbox("chk1",true) %>
<%=html.checkbox("chk1", new { @class="checkbox"}) %>
<%=html.checkboxfor(a =>a.isvaild, new { @class = "checkbox" })%>
生成结果:
<input checked="checked" id="chk1" name="chk1" type="checkbox" value="true" /><input name="chk1" type="hidden" value="false" />
<input class="checkbox" id="chk1" name="chk1" type="checkbox" value="true" /><input name="chk1" type="hidden" value="false" />
<input checked="checked" class="checkbox" id="isvaild" name="isvaild" type="checkbox" value="true" /><input name="isvaild" type="hidden" value="false" />
7.listbox
<%=html.listbox("lstbox1",(selectlist)viewdata["categories"])%>
<%=html.listboxfor(a => a.categoryname, (selectlist)viewdata["categories"])%>
生成结果:
<select id="lstbox1" multiple="multiple" name="lstbox1">
<option value="1">beverages</option>
<option value="2">condiments</option>
<option selected="selected" value="3">confections</option>
<option value="4">dairy products</option>
<option value="5">grains/cereals</option>
<option value="6">meat/poultry</option>
<option value="7">produce</option>
<option value="8">seafood</option>
</select>
<select id="categoryname" multiple="multiple" name="categoryname">
<option value="1">beverages</option>
<option value="2">condiments</option>
<option value="3">confections</option>
<option value="4">dairy products</option>
<option value="5">grains/cereals</option>
<option value="6">meat/poultry</option>
<option value="7">produce</option>
<option value="8">seafood</option>
</select>
8.dropdownlist
<%= html.dropdownlist("ddl1", (selectlist)viewdata["categories"], "--select one--")%>
<%=html.dropdownlistfor(a => a.categoryname, (selectlist)viewdata["categories"], "--select one--", new { @class = "dropdownlist" })%>
生成结果:
<select id="ddl1" name="ddl1">
<option value="">--select one--</option>
<option value="1">beverages</option>
<option value="2">condiments</option>
<option selected="selected" value="3">confections</option>
<option value="4">dairy products</option>
<option value="5">grains/cereals</option>
<option value="6">meat/poultry</option>
<option value="7">produce</option>
<option value="8">seafood</option>
</select>
<select class="dropdownlist" id="categoryname" name="categoryname">
<option value="">--select one--</option>
<option value="1">beverages</option>
<option value="2">condiments</option>
<option value="3">confections</option>
<option value="4">dairy products</option>
<option value="5">grains/cereals</option>
<option value="6">meat/poultry</option>
<option value="7">produce</option>
<option value="8">seafood</option>
</select>
9.partial 视图模板
webform里叫自定义控件。功能都是为了复用。但使用上自定义控件真的很难用好。
<% html.renderpartial("dinnerform"); %>
看清楚了没有等号的。
推荐阅读
-
ASP.NET MVC中HtmlHelper控件7个大类中各个控件使用详解
-
ASP.NET中BulletedList列表控件使用及详解
-
ASP.NET MVC中图表控件的使用方法
-
ASP.NET中Image控件使用详解
-
ASP.NET MVC中HtmlHelper控件7个大类中各个控件使用详解
-
ASP.NET中BulletedList列表控件使用及详解
-
ASP.NET中Image控件使用详解
-
ASP.NET 中 Button、LinkButton和ImageButton 三种控件的使用详解
-
asp.net mvc4中bootstrap datetimepicker控件的使用
-
asp.net mvc4中bootstrap datetimepicker控件的使用