2012年9月26日
摘要: http://topic.csdn.net/u/20120411/09/ec6dc5c8-5322-4319-9667-bf335c156874.html?r=78227584http://zhidao.baidu.com/question/423684549.htmlhttp://zhidao.baidu.com/question/423684549.html 阅读全文
posted @ 2012-09-26 16:38 SatanLucifer 阅读(117) 评论(0) 推荐(0) 编辑
  2012年8月23日
摘要: http://www.microsoft.com/zh-cn/download/details.aspx?id=17876 阅读全文
posted @ 2012-08-23 16:37 SatanLucifer 阅读(144) 评论(0) 推荐(0) 编辑
  2012年8月10日
摘要: MVC如何工作 MVC是一个设计模式,它强制性的使应用程序的输入、处理和输出分开。使用MVC应用程序被分成三个核心部件:模型、视图、控制器。它们各自处理自己的任务。 视图 视图是用户看到并与之交互的界面。对老式的Web应用程序来说,视图就是由HTML元素组成的界面,在新式的Web应用程序中,HTML依旧在视图中扮演着重要的角色,但一些新的技术已层出不穷,它们包括Macromedia Flash和象XHTML,XML/XSL,WML等一些标识语言和Web services. 如何处理应用程序的界面变得越来越有挑战性。MVC一个大的好处是它能为你的应用程序处理很多不同的视图。在视图中... 阅读全文
posted @ 2012-08-10 16:21 SatanLucifer 阅读(209) 评论(0) 推荐(0) 编辑
  2012年7月3日
摘要: function aa() { if ($('[name="cn1"][checked]').length == 0) { $('#s1').html("没值"); } else { $('#s1').html("有值"); } } 阅读全文
posted @ 2012-07-03 23:43 SatanLucifer 阅读(95) 评论(0) 推荐(0) 编辑
  2012年6月29日
摘要: http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css 阅读全文
posted @ 2012-06-29 11:56 SatanLucifer 阅读(95) 评论(0) 推荐(0) 编辑
  2012年6月5日
摘要: http://www.dwway.com/forum.php?mod=viewthread&tid=29017 阅读全文
posted @ 2012-06-05 14:33 SatanLucifer 阅读(260) 评论(0) 推荐(0) 编辑
  2012年3月8日
摘要: http://www.cnblogs.com/TankXiao/archive/2012/02/28/2349218.html#monthSalary 阅读全文
posted @ 2012-03-08 09:35 SatanLucifer 阅读(164) 评论(0) 推荐(0) 编辑
  2011年12月18日
摘要: 版本:jquery-1.7.1.js添加的一些操作:Ashx:View Code public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; //接收前台传值 string Method = context.Request.Params["M"]; switch (Method) { case "Ins... 阅读全文
posted @ 2011-12-18 23:26 SatanLucifer 阅读(143) 评论(0) 推荐(0) 编辑
  2011年12月14日
摘要: 目的:分页地址栏重写Global.asax两个规则:View Code void RegisterRoutes(RouteCollection routes) { routes.MapPageRoute("Url1", "List/{Names}", "~/New/List.aspx"); routes.MapPageRoute("Url2", "List/{Names}/{page}", "~/New/List.aspx"); }注册:View Code void Appl 阅读全文
posted @ 2011-12-14 11:52 SatanLucifer 阅读(267) 评论(0) 推荐(0) 编辑
  2011年12月10日
摘要: 1,创建四个文件夹 Admin AdminFolder,DataClass,UserFolder。Admin:登录以及注册页面AdminFolder:放入拥有Admin权限的页面UserFolder:放入拥有User权限的页面DataClass:Serialize.cs 序列化以及反序列化 LoginInfo.cs:存入登录信息 BasePage.cs 每个页面所要继承取值的类2,创建一些Web.configAdminFolder下的config:View Code <?xml version="1.0"?><configuration> <s 阅读全文
posted @ 2011-12-10 13:49 SatanLucifer 阅读(248) 评论(0) 推荐(0) 编辑