标签:style blog http io ar color os sp java
Html 语法 :<label for="UserName">用户名</label>
Razor语法:@Html.LabelFor(m => m.UserName)
Html 语法 :
<input id=" UserName " name=" UserName " type=" text " value="" />
Razor语法:
@Html.TextBoxFor(m => m.UserName)
Html 语法 :
<input id=" UserName " name=" UserName " type="hidden" value="" />
Razor语法:
@Html.TextBoxFor(m => m.UserName)
Html 语法 :
<input id="UserPass" name="UserPass" type="PasswordFor" value="" />
Razor语法:
@Html.PasswordFor(m => m.UserPass)
Html 语法 :
<input id="Sex0" name="Sex" type="radio" value="0" /> 男
<input id="Sex1" name="Sex" type="radio" value="1" /> 女
<input id="Sex2" name="Sex" type="radio" value="2" /> 保密
Razor语法:
@ Html .RadioButtonFor(m=> m.Sex, 0, new { @id = "Sex0"}) 男
@ Html .RadioButtonFor(m=> m.Sex, 1, new { @id = "Sex1"}) 女
@ Html .RadioButtonFor(m=> m.Sex, 2, new { @id = "Sex2"}) 保密
Html 语法 :
<input id="RememberMe" name="RememberMe" type="checkbox" value="true" />
Razor语法:
@Html.PasswordFor(m => m.UserPass)
@Url.Content()
@Url.Action
Html 语法 :
<link href="/Content/style.css" />
Razor语法:
<link href="@Url.Content("~/Content/style.css")" />
Html 语法 :
<script src="/Content/jquery.js"></script>
Razor语法:
<script src="@Url.Content("~/Content/jquery.js")"></script>
Html 语法 :
<img src="/Content/images/1.jpg" />
Razor语法:
<script src="@Url.Content("~/Content/images/1.jpg")"></script>
Html 语法 :
<a href="/Register">注册</a>
Razor语法:
@Html.ActionLink("注册", "Register")
注:@Html.ActionLink有多个重载,具体参照MSDN API文档
@using( Html .BeginForm()){
//默认提交到本页面
<input type="submit" value="Button"/>
}
@using (Ajax.BeginForm(new AjaxOptions { UpdateTargetId="txtResult" }))
{
<input type="submit" value="Button"/>
<span id="txtResult"/>
}
ASP.NET MVC4 View层_Razor操作Html元素
标签:style blog http io ar color os sp java
原文地址:http://www.cnblogs.com/TF12138/p/4115169.html