上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: Web页面是无状态的, 服务器对每一次请求都认为来自不同用户,因此,变量的状态在连续对同一页面的多次请求之间或在页面跳转时不会被保留。在用ASP.NET 设计开发一个Web系统时, 遇到一个重要的问题是如何保证数据在页面间进行正确、安全和高效地传送,Asp.net 提供了状态管理等多种技术来解决保存 阅读全文
posted @ 2016-03-10 16:42 少时不知贵 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 看UI <form action="" name=""> <input type="submit" value="查询" /> <input type="button" id="down" value="下载" /> </form> js: $("#down").click(function () 阅读全文
posted @ 2016-03-10 10:23 少时不知贵 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 控制器代码: 模型代码 附带代码包:控制器位home http://pan.baidu.com/s/1mh0T77a 阅读全文
posted @ 2016-03-06 19:12 少时不知贵 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 2016.03.04 扩展:如果 view中传入的是List<T>类型 怎么使用 DropList 既然是List<T> 那么我转化成 T List<T>的第一个,最后一个不就是M吗? @Html.DropDownListFor(model=>model.First().Title, ViewDat 阅读全文
posted @ 2016-03-04 22:58 少时不知贵 阅读(1068) 评论(0) 推荐(0) 编辑
摘要: 最新封装类: 2016-03-14 1.添加对OleConn的读 private static string connstring = @"Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" + pat 阅读全文
posted @ 2016-02-28 14:14 少时不知贵 阅读(286) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/A_ming/archive/2013/05/24/3097062.html 如何很好的使用Linq的Distinct方法[全屏看文] Person1: Id=1, Name="Test1" Person2: Id=1, Name="Test1" Per 阅读全文
posted @ 2016-02-26 00:41 少时不知贵 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 【转自】http://www.cnblogs.com/dozer/archive/2010/04/12/MVC-DataAnnotations.html 作者 Dozer 今天在这里给大家介绍一下MVC的数据验证框架。 在1.0版中,很多朋友提出了怎么使用客户端验证,今天找了一些资料,发现了客户端验 阅读全文
posted @ 2016-02-19 14:17 少时不知贵 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 【转自】:http://www.cnblogs.com/dengdl/archive/2011/07/14/2106849.html 在做Asp.Net MVC项目中,都知道View负责页面展示数据或者提供页面收集数据,而所展示的数据或者收集的数据都是从Controller的Action中获取或提交 阅读全文
posted @ 2016-02-19 14:16 少时不知贵 阅读(201) 评论(0) 推荐(0) 编辑
摘要: HtmlHelper用来在视图中呈现 HTML 控件。 以下列表显示了当前可用的一些 HTML 帮助器。 本主题演示所列出的带有星号 (*) 的帮助器。 ActionLink - 链接到操作方法。 BeginForm * - 标记窗体的开头并链接到呈现该窗体的操作方法。 CheckBox * - 呈 阅读全文
posted @ 2016-02-19 14:11 少时不知贵 阅读(224) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.Web 阅读全文
posted @ 2016-02-14 22:24 少时不知贵 阅读(158) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页