-
2014-03-27
由于工作需要,要在JS端将JSON对象转化为字符串,并写到用户的COOKIE中,用来保存用户的一些个人操作习惯。便在网上搜寻了一遍,发现方法有很多,有些代码不清晰,看得乱,有些考虑不周全,生成的字符串有问题,便整合了一些好的写法,自己改进了一下。可能还是考虑得不周全,但是感觉常用的…
http://www.wfuyu.com/jscript/7926.html
-
2013-12-25
1 建立数据库、注册表 create database test; create table test.login( id int primary key, name varchar(20) not null, password varchar(20) not null ); insert into test.login values ('1','hong','1234'), ('2','linxiang','1234'), ('3','chen','99a9s'), ('4','luxi','aabe2'); 2 建立jso…
http://www.wfuyu.com/technology/7563.html
-
2013-10-23
一、AjaxJson.aspx 处理业务数据,产生JSon数据,供JqueryRequest.aspx调用,代码如下: protected void Page_Load(object sender, EventArgs e) { string u = Request["UserName"]; string p = Request["Password"]; string output = string.Format("'UserName':'{0}','Pa…
http://www.wfuyu.com/jquery/7358.html
-
2014-05-06
asp:DropDownList ID="ddl1" runat="server" Width="100px" ></asp:DropDownList> <asp:DropDownList ID="ddl2" runat="server" Width="100px" ></asp:DropDownList> <asp:DropDownList ID="ddl3"…
http://www.wfuyu.com/jquery/7292.html
-
2014-01-06
在网上找了半天关于如何从前端json传过来的数据,到后台获取。
主要思路如下,通过JsonParamFilter类来序列化从前端获取的数据。
JsonParamFilter.cs:
代码
using System;using System.Collections.Generic;using System.IO;using System.Runtime.Serialization; // 需要引用 System.Runtime.Ser…
http://www.wfuyu.com/jquery/6841.html
-
2014-01-06
首先,WCF直接提供了返回JSON对象。
如果我们没有使用WCF,我们可以通过System.Runtime.Serialization.Json.DataContractJsonSerializer类(System.ServiceModel.Web.dll)或System.Web.Script.Serialization.JavaScriptSerializer类(System.Web.Extensions.dll)。
昨天在使用DataContractJ…
http://www.wfuyu.com/technology/6724.html
-
2014-02-27
网(LieHuo.Net)教程 在jquery中,使用$("#myform").serialize()可以将表单的内容构造成一个querystring,例如width=1680&height=1050这样的表达式,可以转化为json 表达式{"width":"1680","height":"1050"}。 有时候,我们需要进一…
http://www.wfuyu.com/jquery/6198.html
-
2014-01-19
一、什么是跨域?
因为javascript同源策略的限制,a.com 域名下的js脚本无法操作b.com或是c.a.com域名下的对象。
1.什么引起了ajax不能跨域请求的问题?ajax本身实际上是通过XMLHttpRequest对象来进行数据的交互,而浏览器出于安全考虑,不允许js代码进行跨域操作,所以会警告。
网上有很多…
http://www.wfuyu.com/jquery/5879.html
-
2014-06-03
以前我经常在博客说JSONP,例如我的WordPress天气插件就是通过JSONP来调用的天气数据,今天就说说通过JSONP实现跨域的应用~ 什么是JSONP JSONP即JSON with Padding。由于同源策略的限制,XmlHttpRequest只允许请求当前源(域名、协议、端口)的资源。如果要进行跨域请求,我们可以通过使用 html的sc…
http://www.wfuyu.com/jscript/5636.html
-
2013-11-01
最近正在用ajax无刷新做网站,发现数据很好传输,但是数据集不知道怎么获得,于是,上网查了一些资料来传输数据,现在和大家分享一下,不知道的童鞋可以和我一起学习,知道的请指点一二。我选择的方法是用json 来获取数据集。
其实Json也就是一种数据的格式,在后台将数据封转为一种格式,然…
http://www.wfuyu.com/jquery/5304.html