现在的位置: 首页 > 综合 > 正文

MVC学习笔记五:HTML辅助方法【下】

2017年10月09日 ⁄ 综合 ⁄ 共 4876字 ⁄ 字号 评论关闭

这一篇,简单记录下利用Html辅助器生成的常用Web控件。

一.TextBox控件

1.Html.TextBox()

  先介绍使用该方法生成文本框,从定义上看,默认有4种方法供我们重载,下面每种我都试一下:

@using HtmlSampleApp.MyManagers;
@model HtmlSampleApp.Models.Sheep
@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

@{
    @Html.TextBox("text1");
    <br />
    @Html.TextBox("text2", "Hello~");
    <br />
    @Html.TextBox("text3", "world", new { id = "mytext1", maxlength = "15", size = "20", background = "Red" });
    <br />
    var dic = new Dictionary<string, object>();
    dic.Add("key1", new { id = "mytext2", maxlength = "15", size = "20", style = "background-color:#FFCCFF", onfocus = "this.value=\"\"" });
    @Html.TextBox("text4", "Merry", dic["key1"]);
}

生成的网页如下:

 

 源码:

<!DOCTYPE html>
<html>
<head>
    <title>Index</title>
    <link href="/Content/Site.css" rel="stylesheet" type="text/css" />
    <script src="/Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
</head>

<body>
    
<h2>Index</h2>

<input id="text1" name="text1" type="text" value="" />    <br />
<input id="text2" name="text2" type="text" value="Hello~" />        <br />
<input background="Red" id="mytext1" maxlength="15" name="text3" size="20" type="text" value="world" />        <br />
<input id="mytext2" maxlength="15" name="text4" onfocus="this.value=""" size="20" style="background-color:#FFCCFF" type="text" value="Merry" />
</body>
</html>

 

2.Html.TextBoxFor<TModel,TProperty>

同样 ,该方法也有三个重载,这里都试验一下:

@using HtmlSampleApp.MyManagers;
@model HtmlSampleApp.Models.Sheep
@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

@{
    @Html.TextBoxFor(m => m.name);
    <br />
    @Html.TextBoxFor(m => m.name, new { style = "background-color:blue" });
    <br />
    var dic = new Dictionary<string, object>();
    dic.Add("key1", new { id = "mytext2", maxlength = "15", size = "20", style = "background-color:#FFCCFF", onfocus = "this.value=\"\"" }); 
    @Html.TextBoxFor(m => m.name, dic["key1"]);
}

运行结果:

查看源码:

<!DOCTYPE html>
<html>
<head>
    <title>Index</title>
    <link href="/Content/Site.css" rel="stylesheet" type="text/css" />
    <script src="/Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
</head>

<body>
    
<h2>Index</h2>

<input id="name" name="name" type="text" value="Tom" />    <br />
<input id="name" name="name" style="background-color:blue" type="text" value="Tom" />    <br />
<input id="mytext2" maxlength="15" name="name" onfocus="this.value=""" size="20" style="background-color:#FFCCFF" type="text" value="Tom" />
</body>
</html>

总结:

1)Html.TextBox方法可以自动生成textBox的id,name属性,属性值为首参数值。或生成value属性,属性值为第二参数值,或生成其它属性及值,对应第三参数;

2)Html.TextBoxFor方法可以自动生成textBox的id,name属性,属性值为首参数返回的属性名,而不是属性值(如上面的是Sheep的name属性,而不是name的属性值Tom).

生成value属性,属性值为首参数返回的属性的值(如上面的Tom).其它属性及值,对应第二参数。

注意两种方法的其它属性里如果包含了id或name,value参数,会覆盖首参数定义的值。即如果首参数定义了id=“id1”,而object attribute定义了id=“id2”,那么id2会覆盖id1.

 

二.DropDownList控件

其实,网页中的dropdownlist也就是<select>标签,如:

<!DOCTYPE html>
<html>
	<head>
		<title>Index</title>
		<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
		<script src="/Scripts/jquery-1.7.1.min.js" type="text/javascript"/>
	</head>

	<body>

		<h2>Index</h2>

		<select id="dropdownlist1" name="dropdownlist1">
			<option>item---------1</option>
			<option>item---------2</option>
			<option selected="selected">item---------3</option>
		</select>
	</body>
</html>

它的实际效果是一个下拉框里有3个选项,默认是选中第三个:

同样,可以使用Html.DropDownList及HtmlDropDownList<>方法实现:

1)Html.DropDownList方法

从定义上看,目前默认有8中重载方式,下面取其中具有代表性的方法试验一下,其它大同小异:

@using HtmlSampleApp.MyManagers;
@model HtmlSampleApp.Models.Sheep
@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

@{

    @Html.DropDownList("dropdownlist3",
                                            new List<SelectListItem>() 
                                            { 
                                                new SelectListItem { Text="item---------1"},
                                                new SelectListItem { Text="item---------2"},
                                                new SelectListItem { Text="item---------3",Selected=true},
                                            });

    @Html.DropDownList("dropdownlist4",
                                            new List<SelectListItem>() 
                                            { 
                                                new SelectListItem { Text="item---------1"},
                                                new SelectListItem { Text="item---------2"},
                                                new SelectListItem { Text="item---------3",Selected=true}
                                            },
                                            new { style = "background-color:#FFB5C5" });
    @Html.DropDownList("dropdownlist5",
                                        new List<SelectListItem>() 
                                            { 
                                                new SelectListItem { Text="item---------1"},
                                                new SelectListItem { Text="item---------2"},
                                                new SelectListItem { Text="item---------3",Selected=true}
                                            },
                                            "Hello,World~",new { style = "background-color:#7B68EE" });

}

运行:

对应生成的网页源码:

<!DOCTYPE html>
<html>
	<head>
		<title>Index</title>
		<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
		<script src="/Scripts/jquery-1.7.1.min.js" type="text/javascript"/>
	</head>

	<body>

		<h2>Index</h2>

		<select id="dropdownlist3" name="dropdownlist3">
			<option>item---------1</option>
			<option>item---------2</option>
			<option selected="selected">item---------3</option>
		</select>
		<select id="dropdownlist4" name="dropdownlist4" style="background-color:#FFB5C5">
			<option>item---------1</option>
			<option>item---------2</option>
			<option selected="selected">item---------3</option>
		</select>
		<select id="dropdownlist5" name="dropdownlist5" style="background-color:#7B68EE">
			<option value="">Hello,World~</option>
			<option>item---------1</option>
			<option>item---------2</option>
			<option selected="selected">item---------3</option>
		</select>
	</body>
</html>

将View代码对比一下网页源码,即可知id,name的属性值是由该方法首参数而来,其中下拉框中的项目值是由集合参数而来。

2)Html.DropDownList<TModel,TProperty>方法

该方法跟上面的差不多,只不过支持强类型,首参数变成了Func<>,参考上面的TextBoxFor用法。

 

关于其它的控件如:CheckBox,RadiuButton等用法和上面的基本类似,都可以参考以上用法。详见MSDN中HtmlHelper扩展方法:点击打开链接

抱歉!评论已关闭.