博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET MVC 3.0小知识积累
阅读量:6159 次
发布时间:2019-06-21

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

1、JsonResult

1 using System.Web.Mvc;  2  3 //public ActionResult Index()  4 public JsonResult Index()  5 {
6 var province = from p in new Models.NorthwindDataContext().Province 7 select p; 8 9 return Json(new 10 {
11 page = 1, 12 total = province.Count(), 13 rows = province.ToList() 14 }, 15 JsonRequestBehavior.AllowGet 16 ); 17 }

 

2、Html Helper

@Html.TextBox("UserName")    <—>    <input id="UserName" type="text" value="" name="UserName">

@Html.TextBox("UserName", null, new { id = "txtUserName" })    <—>    <input id="txtUserName" type="text" value="" name="UserName">

@Html.TextBox("UserName", null, new { id = "txtUserName", style = "width:100px;" })    <—>    <input id="txtUserName" type="text" value="" style="width:100px;" name="UserName">

@Html.TextBox("UserName", null, new { id = "txtUserName", @class = "highlight" })    <—>    <input id="txtUserName" class="highlight" type="text" value="" name="UserName">

 

@Html.ActionLink("删除", "DeletePost", new { id = item.ID }, new { onclick = "return confirm('你确定要删除该随笔?')" })

转载地址:http://meifa.baihongyu.com/

你可能感兴趣的文章
《.NET应用架构设计:原则、模式与实践》新书博客--试读-1.1.2 架构师的职责
查看>>
SQL Server大负载的生产环境下的性能优化:初识元数据优化
查看>>
我的友情链接
查看>>
MySql,Sql Server分区技术浅析
查看>>
hibernate之缓存
查看>>
KVM虚拟化笔记(七)------kvm虚拟机VNC的配置
查看>>
我的友情链接
查看>>
修改freebsd的主机名
查看>>
Form表单基础知识和常用兼容方法笔记(二)
查看>>
asp.net mvc+httpclient+asp.net mvc api入门篇
查看>>
不错的东西: AutoMapper
查看>>
亲测能用的mysqli类,挺好用的
查看>>
一文读懂RPA与BPM的区别和联系
查看>>
LeetCode----67. Add Binary(java)
查看>>
一次加载多个包
查看>>
中信国健临床通讯 2011年3月期 目 录
查看>>
人生如戏
查看>>
Sicily 1346. 金明的预算方案
查看>>
SpringMVC (六)注解式开发
查看>>
使用VirtualEnvWrapper隔离python项目的库依赖
查看>>