using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data; using System.Data.SqlClient; namespace WindowsF…
function setCookie(name,value,expires,path,domain){ //设置过期时间 var oDate = new Date(); oDate.setDate(oDate.getDate()+expires); var str = name +'='+encodeURIComponent(value)+';expires'+oDate; //指定路径 path = path ||'/'; str+= ';path=' + path; //设置域名if(dom…
AngularJS中的$resource服务相比$http服务更适合与RESTful服务进行交互.本篇后端使用ASP.NET Web API, 前端使用$resource,实现增删改查. 本系列包括: 1.前端使用AngularJS的$resource,后端ASP.NET Web API,实现增删改查2.前端使用AngularJS的$resource,后端ASP.NET Web API,实现分页.过滤 领域和上下文 首先领域先行. public class StudentVm { [Key] p…
Zookeeper 的增删改查demo代码 public class SimpleZkClient { private static final String connectString = "mini1:2181,mini2:2181,mini3:2181"; private static final int sessionTimeout = 2000; ZooKeeper zkClient = null; @Before public void init() throws Exce…