博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET MVC HtmlHelper用法大全
阅读量:5167 次
发布时间:2019-06-13

本文共 1932 字,大约阅读时间需要 6 分钟。

HTML扩展类的所有方法都有2个参数:以textbox为例子public static string TextBox( this HtmlHelper htmlHelper, string name, Object value,IDictionary
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" })%> 生成结果为:
这是一个连接带有QueryString的写法
这是一个连接
这是一个连接有其它Html属性的写法
这是一个连接
这是一个连接QueryString与Html属性同时存在
这是一个连接
这是一个连接 2.RouteLink跟ActionLink在功能上一样。<%=Html.RouteLink("关于", "about", new { })%>带QueryString<%=Html.RouteLink("关于", "about", new { page = 1 })%><%=Html.RouteLink("关于", "about", new { page = 1 }, new { id = "link1" })%> 生成结果:
关于
关于
关于3.Form 2种方法<%using(Html.BeginForm("index","home",FormMethod.Post)){%><%} %> <%Html.BeginForm("index", "home", FormMethod.Post);//注意这里没有=输出%><%Html.EndForm(); %> 生成结果:
4.TextBox , Hidden ,<%=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;" })%> 生成结果:
5.TextArea<%=Html.TextArea("input5", Model.CategoryName, 3, 9,null)%><%=Html.TextAreaFor(a => a.CategoryName, 3, 3, null)%> 生成结果:

 

转载于:https://www.cnblogs.com/cyccess/archive/2013/05/16/3081821.html

你可能感兴趣的文章
命令ord
查看>>
Sharepoint 2013搜索服务配置总结(实战)
查看>>
博客盈利请先考虑这七点
查看>>
使用 XMLBeans 进行编程
查看>>
写接口请求类型为get或post的时,参数定义的几种方式,如何用注解(原创)--雷锋...
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
获取国内随机IP的函数
查看>>
今天第一次写博客
查看>>
江城子·己亥年戊辰月丁丑日话凄凉
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
『Raid 平面最近点对』
查看>>
【ADO.NET基础-数据加密】第一篇(加密解密篇)
查看>>
STL中的优先级队列priority_queue
查看>>
UE4 使用UGM制作血条
查看>>
浏览器对属性兼容性支持力度查询网址
查看>>
面试整理:Python基础
查看>>
Program exited with code **** 相关解释
查看>>
tableView
查看>>