上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 47 下一页
摘要: json相信大家都用的多,jsonp我就一直没有机会用到,但也经常看到,只知道是“用来跨域的”,一直不知道具体是个什么东西。今天总算搞明白了。下面一步步来搞清楚jsonp是个什么玩意。同源策略首先基于安全的原因,浏览器是存在同源策略这个机制的,同源策略阻止从一个源加载的文档或脚本获取或设置另一个源加... 阅读全文
posted @ 2015-04-08 08:49 fleam 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 前台@{ ViewBag.Title = ""; Layout = "~/Views/Shared/ExtJs_Layout.cshtml";}@section script{} 控制器using System.Collections.Generic;usi... 阅读全文
posted @ 2015-03-21 15:29 fleam 阅读(188) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/iamlilinfeng/archive/2012/06/23/2559166.html 阅读全文
posted @ 2015-03-21 13:42 fleam 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 。(5)form.getForm().isValid():校验表单的验证项是否全部通过。(6)form.getForm().reset():重置表单。-->http://www.cnblogs.com/iamlilinfeng/arch... 阅读全文
posted @ 2015-03-21 13:39 fleam 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-03-21 13:37 fleam 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/iamlilinfeng/archive/2012/06/21/2557756.html 阅读全文
posted @ 2015-03-21 13:35 fleam 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 这里表单内容':表单内显示html的内容。-->http://www.cnblogs.com/iamlilinfeng/archive/2012/06/19/2554652.html 阅读全文
posted @ 2015-03-21 13:34 fleam 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 这里是窗体内容':窗体内部显示的html内容。(5)resizable: true:是否可以调整窗体的大小,这里设置为 true。(6)modal: true:是否为模态窗体[什么是模态窗体?当你打开这个窗体以后,如果不能对其他的窗体进... 阅读全文
posted @ 2015-03-21 13:32 fleam 阅读(143) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/iamlilinfeng/archive/2012/06/18/2553527.html 阅读全文
posted @ 2015-03-21 13:31 fleam 阅读(153) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/tcjiaan/article/details/7764858 阅读全文
posted @ 2015-03-17 22:05 fleam 阅读(113) 评论(0) 推荐(0) 编辑
摘要: c#数据查询输出2012-07-17 17:071、使用ExecuteReader()操作数据库2、使用ExecuteNonQuery()操作数据库3、使用ExecuteScalar()操作数据库4、使用DataSet数据集插入记录、更新数据。1、使用ExecuteReader()操作数据库,执行查... 阅读全文
posted @ 2015-03-13 22:43 fleam 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 控制层using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Data;using System.Data.SqlClient... 阅读全文
posted @ 2015-03-13 18:59 fleam 阅读(160) 评论(0) 推荐(0) 编辑
摘要: alert("123"); //警告框显示console.log(json); //火狐控制台显示 阅读全文
posted @ 2015-03-09 17:00 fleam 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 简单的介绍 SQLite数据库是一款非常小巧的嵌入式开源数据库软件,也就是说没有独立的维护进程,所有的维护都来自于程序本身。它是遵守ACID的关联式数据库管理系统,它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够... 阅读全文
posted @ 2015-03-06 10:18 fleam 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 验证数字:^[0-9]*$验证n位的数字:^\d{n}$验证至少n位数字:^\d{n,}$验证m-n位的数字:^\d{m,n}$验证零和非零开头的数字:^(0|[1-9][0-9]*)$验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数:^[0-9]+(.[0... 阅读全文
posted @ 2015-03-05 10:44 fleam 阅读(235) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 47 下一页