• 【MVC】ASP.NET MVC HtmlHelper用法大全


    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 , Hidden

    <%=Html.TextBox("input1") %> 
    <%=Html.TextBox("input2",Model.CategoryName,new{ @style = "300px;" }) %> 
    <%=Html.TextBox("input3", ViewData["Name"],new{ @style = "300px;" }) %> 
    <%=Html.TextBoxFor(a => a.CategoryName, new { @style = "300px;" })%> 
     
    生成结果:
     
    <input id="input1" name="input1" type="text" value="" /> 
    <input id="input2" name="input2" style="300px;" type="text" value="Beverages" /> 
    <input id="input3" name="input3" style="300px;" type="text" value="" /> 
    <input id="CategoryName" name="CategoryName" style="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>
    </select>
    <select id="CategoryName" multiple="multiple" name="CategoryName">
    <option value="1">Beverages</option>
    <option value="2">Condiments</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> 
    </select> 
    <select class="dropdownlist" id="CategoryName" name="CategoryName">
    <option value="">--Select One--</option> 
    <option value="1">Beverages</option> 
    <option value="2">Condiments</option> 
    </select>
     
    本文转自:http://www.cnblogs.com/yuanhuaming/archive/2010/02/18/1669184.html
  • 相关阅读:
    laravel 的passport Oauth 认证登录请求 的 oauth_token 重置
    多个php版本的composer使用
    MySQL查询语句练习题(面试时可能会遇到哦!)
    tp5 url 线上访问 在nginx 上 出现404错误,解决办法(1.80nginx 配置 pathInfo)
    源码编译安装lnmp环境(nginx-1.14.2 + mysql-5.6.43 + php-5.6.30 )------踩了无数坑,重装了十几次服务器才会的,不容易啊!
    Mysql错误处理: /usr/bin/mysqld_safe: line xxx: xxxx Killed ... (mysql自动停止 Plugin FEDERATED is disabled 的完美解决方法)
    Plugin 'FEDERATED' is disabled. /usr/sbin/mysqld: Table 'mysql.plugin' doesn't exist
    thinkphp5的mkdir() Permission denied问题
    微信小程序 Unexpected end of JSON input/Unexpected token o in JSON at position 1
    服务器 apache配置https,http强制跳转https(搭建http与https共存)
  • 原文地址:https://www.cnblogs.com/jx270/p/4212169.html
Copyright © 2020-2023  润新知