日本搞逼视频_黄色一级片免费在线观看_色99久久_性明星video另类hd_欧美77_综合在线视频

中國最全IT社區(qū)平臺 聯(lián)系我們 | 收藏本站
阿里云優(yōu)惠2

json教程

  • 關(guān)于 JSON
  • JSON 教程

    json格式

    JSON解析

    JSON遍歷

    JSON調(diào)用

    JSON轉(zhuǎn)換

    JSON獲取

    JSON字符串

    JSON數(shù)組

    ASP.NET(AJAX+JSON)實現(xiàn)對象調(diào)用

    閱讀 (2307)
    客戶端: 
    代碼如下:
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ASP.NETA_JAX.aspx.cs" Inherits="_Default" %> 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head runat="server"> 
    <title></title> 
    <script type="text/jscript"> 
    function CallServer() { 
    //JSON發(fā)送對象 
    ServerSum("{name:'linyijia',age:'21'}"); 
    } 
    function GetRegister(rg, contex) { 
    document.getElementById("TxtRegister").value=rg; 
    } 
    </script> 
    </head> 
    <body> 
    <form id="form1" runat="server"> 
    <div> 
    <br /> 
    用戶名:<input id="TxtNum1" type="text" /> 
    <br /> 
    服務(wù)器:<input id="TxtRegister" type="text" /><br /> 
    <button id="SumBtn" type="button" onclick="CallServer()">登錄</button> 
    </div> 
    </form> 
    </body> 
    </html> 
    

    服務(wù)器: 
    代碼如下:
    using System; 
    using System.Collections.Generic; 
    using System.Linq; 
    using System.Web; 
    using System.Web.UI; 
    using System.Web.UI.WebControls; 
    using System.Web.Script.Serialization; 
    public partial class _Default : System.Web.UI.Page ,ICallbackEventHandler 
    { 
    Users u = null; 
    protected void Page_Load(object sender, EventArgs e) 
    { 
    //回調(diào)GetRegister方法 
    string CallBackFun = Page.ClientScript.GetCallbackEventReference(this,"arg","GetRegister","context"); 
    //創(chuàng)建ServerSum方法,在客戶端調(diào)用的時候就,會回調(diào)GetRegister方法,把參數(shù)傳給RaiseCallbackEvent(string eventArgument ),最后通過 
    //GetCallbackResult()方法把返回值傳給客戶端 
    string RegisterFun = string.Format("function ServerSum(arg,context){{{0};}}",CallBackFun); 
    Page.ClientScript.RegisterClientScriptBlock(this.GetType(),"ServerSum",RegisterFun,true); 
    } 
    string mssage = string.Empty; 
    #region ICallbackEventHandler 成員 
    public string GetCallbackResult() 
    { 
    return "服務(wù)器:你好,你的用戶名為:" + u.Name + "你的年齡為" + u.Age; 
    } 
    public void RaiseCallbackEvent(string eventArgument) 
    { 
    JavaScriptSerializer js = new JavaScriptSerializer(); 
    u =js.Deserialize<Users>(eventArgument); 
    } 
    #endregion 
    } 

    Users類 
    代碼如下:
    using System; 
    using System.Collections.Generic; 
    using System.Linq; 
    using System.Web; 
    /// <summary> 
    ///User 的摘要說明 
    /// </summary> 
    public class Users 
    { 
    string name; 
    public string Name 
    { 
    get { return name; } 
    set { name = value; } 
    } 
    string age; 
    public string Age 
    { 
    get { return age; } 
    set { age = value; } 
    } 
    } 
    原理: 

    使用JSON向服務(wù)器發(fā)送一個對象,服務(wù)器通過實現(xiàn) ICallbackEventHandler接口后,重寫GetCallbackResult和RaiseCallbackEvent方法,在回調(diào)的時候,在RaiseCallbackEvent方法中反序列化JSON,并在GetCallbackResult把結(jié)果返回給客戶端.

    asp.net中 使用jquery+ashx 做ajax,json做數(shù)據(jù)傳輸

    一.準備工作:

    1.建web應(yīng)用程序aspnetAjax

    2.建index.htm

    3.建個js文件夾,把jquery.js放進去,

    4.建ajax文件夾,里面放ashx

    5.在js文件夾建index.js,一般我們都是一個頁面對應(yīng)一個js

    6.在ajax文件夾,建IndexHandler.ashx,一般一個js頁面對應(yīng)一個一般用戶控件,這樣層次感很強,也很好維護。

     

    二.html頁面

    html頁面就簡單了,我們要用ajax讀后臺做個下拉列表,所以頁面就放個DIV就行了。其他的交給js.

    代碼:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
        <title>測試</title>
        <script src="js/jquery-1.2.3-intellisense.js" type="text/javascript"></script>
        <script src="js/index.js" type="text/javascript"></script>
    </head>
    <body>
        企業(yè)性質(zhì)<div id="vocaspec"> </div>
        行業(yè)類型<div id="industr"> </div>      
    </body>
    </html>
    

     

    編寫IndexHandler.ashx代碼

    代碼:

    namespace aspnetAjax.ajax
    {
        /// <summary>
        /// $codebehindclassname$ 的摘要說明
        /// </summary>
    
        public class IndexHandler : IHttpHandler
        {
            public void ProcessRequest(HttpContext context)
            {
               context.Response.ContentType = "application/json";
               //接收提交過來的meth參數(shù)
                string meth = context.Request.Params["meth"].ToString(); 
                //根據(jù)參數(shù)調(diào)用不同的方法
                switch (meth) 
                {
                    case "load":
                        loadjson(context);
                        break;
                    case "add":
                        add(context);
                        break;
                }        
           }
            public bool IsReusable
            {
                get
                {
                    return false;
                }
            }
           //頁面加載方法,調(diào)用BLL,獲得數(shù)據(jù)
             private void loadjson(HttpContext context) 
            {
                //實例BLL
                VocaSpecSortBLL vocaSpec = new VocaSpecSortBLL();
                BLL.Owner ownerbll = new GYXMGL.BLL.Owner();
                 
                 DataSet ds = vocaSpec.GetList("");
                 DataSet dsindustr = ownerbll.Getcharcte();
                 //實例一個StringBuilder 用來拼接一個json數(shù)據(jù)
                 StringBuilder sbvoca = new StringBuilder();
                if (ds != null && ds.Tables[0].Rows.Count > 0)
                {
                    sbvoca.Append("{\"voce\":[");
                    int i = 1;
                    int count = ds.Tables[0].Rows.Count;
                    foreach (DataRow dr in ds.Tables[0].Rows) 
                    {
                        if (i == count)
                        {
                            sbvoca.Append("{\"code\":\"" + dr[0] + "\",\"name\":\"" + dr[1] + "\"}");
                        }
                        else
                        {
                            sbvoca.Append("{\"code\":\"" + dr[0] + "\",\"name\":\"" + dr[1] + "\"},");
                        }
                        i++;
                    }
                    sbvoca.Append("]");
                }
                if (dsindustr != null && dsindustr.Tables[0].Rows.Count > 0) 
                {
                    sbvoca.Append(",\"industr\":[");
                    int i = 1;
                    int count = dsindustr.Tables[0].Rows.Count;
                    foreach (DataRow dr in dsindustr.Tables[0].Rows)
                    {
                        if (i == count)
                        {
                            sbvoca.Append("{\"code\":\"" + dr[0] + "\",\"name\":\"" + dr[1] + "\"}");
                        }
                        else 
                        {
                            sbvoca.Append("{\"code\":\"" + dr[0] + "\",\"name\":\"" + dr[1] + "\"},");
                        }
                        i++;
                    }
                    sbvoca.Append("]");
                }
                sbvoca.Append("}");
                context.Response.Write(sbvoca.ToString());
                
                context.Response.End();
            }
        }
    }

    我們把index.js改下

    代碼

    $(document).ready(function() {
        $.ajax({
            type: "POST",
            url: "../ajax/NewOwnerHandler.ashx",
            //我們用text格式接收
            dataType: "text",
            data: "meth=load",
            success: function(msg) {
                alert(msg);
                //顯示后臺數(shù)據(jù)
                $("#vocaspec").html(msg);
                // $("#industr").html(industr);
            }
        });
    });

    看到如下數(shù)據(jù),就是ashx中response給我們的json格式數(shù)據(jù),現(xiàn)在我們要把這些數(shù)據(jù)

    顯示在下拉列表中。就要遍歷json中的數(shù)組。

    代碼:

    {
    "voce":[{"code":"1","name":"農(nóng)林水利"},{"code":"10","name":"軍工"},{"code":"11","name":"農(nóng)林"},{"code":"12","name":"水利(電)"},{"code":"13","name":"水電站"},{"code":"14","name":"輸變線"},{"code":"15","name":"煤礦"},{"code":"16","name":"氣田"},{"code":"17","name":"公路"},{"code":"18","name":"鐵路"},{"code":"19","name":"民航"},{"code":"2","name":"能源"},{"code":"20","name":"信息產(chǎn)業(yè)"},{"code":"21","name":"化工"},{"code":"22","name":"機械"},{"code":"23","name":"冶金"},{"code":"24","name":"有色金屬"},{"code":"25","name":"建材"},{"code":"26","name":"醫(yī)藥"},{"code":"27","name":"輕工"},{"code":"28","name":"農(nóng)牧產(chǎn)品深加工"},{"code":"3","name":"交通"},{"code":"4","name":"通訊"},{"code":"5","name":"特色產(chǎn)業(yè)"},{"code":"6","name":"城市基礎(chǔ)設(shè)施"},{"code":"7","name":"商貿(mào)流通"},{"code":"8","name":"旅游"},{"code":"9","name":"文體衛(wèi)"}],
    "industr":[{"code":"1","name":"國有"},{"code":"2","name":"私人"}]
    }
    

    修改index.js代碼,遍歷json數(shù)據(jù)把數(shù)據(jù)顯示成下拉列表

    代碼:

    $(document).ready(function() {
        $.ajax({
            type: "POST",
            url: "../ajax/NewOwnerHandler.ashx",
            //json格式接收數(shù)據(jù)
            dataType: "json",
            //指點后臺調(diào)用什么方法
            data: "meth=load",
            success: function(msg) {
                 //實例2個字符串變量來拼接下拉列表
                   var industr = "<select name=\"industr\"><option label=\"---請選擇---\"></option>";
                   var vocaspec = "<select name=\"vocaspec\"><option label=\"---請選擇---\"></option>";
                  //使用jquery解析json中的數(shù)據(jù)
                   $.each(msg.voce, function(n, value) {
                         vocaspec += ("<option value=\"" + value.code + "\" label=\"" + value.name + "\">");
                         vocaspec += ("</option>");
                        });
                    $.each(msg.industr, function(n, value) {
                         industr += ("<option value=\"" + value.code + "\" label=\"" + value.name + "\">");
                          industr += ("</option>");
                       });
                 industr += ("</select>");
                 $("#vocaspec").html(vocaspec);
                $("#industr").html(industr);
            }
        });
    });
    

     

    這個實例涉及到的知識點

    1.使用一般處理程序,接收request。并可以使用response數(shù)據(jù)

    string meth = context.Request.Params["meth"].ToString();

    因為一般處理程序

    public class IndexHandler : IHttpHandler

    他實現(xiàn)IHttpHandler接口

    2.json數(shù)據(jù)格式

    3.使用jquery ajax,并用jquery解析json數(shù)據(jù)。



     



     


    關(guān)閉
    程序員人生
    主站蜘蛛池模板: 亚洲成人av | 99国产精品视频免费观看一公开 | 国产美女被遭强高潮免费网站 | 久久精品网 | 亚洲免费激情 | 丝袜 亚洲 另类 欧美 综合 | 亚洲女人天堂成人av在线 | 久久66| 亚洲成人av在线播放 | 91成人在线播放 | 免费观看污污视频 | 欧日韩一区二区三区 | 日韩电影在线 | 日本在线视频不卡 | 亚洲欧美日韩在线播放 | 国产一区二区三区免费在线观看 | 精品久久久精品 | 亚洲欧洲成人精品av97 | 久久精品亚洲国产 | 久久国产精品电影 | 亚洲福利视频一区二区 | 精品日韩在线观看 | 99久久精品视频免费 | 欧美精品成人 | 国内精自视频品线六区免费 | jizzjizz中文 | 久久久一区二区三区 | 欧美成人手机在线 | 欧美黄色大片在线观看 | 色综合色综合 | 曰韩一级片 | 99久久精品免费看国产一区二区三区 | 欧美日韩亚洲精品一区二区三区 | v片在线观看 | 中文字字幕码日产高清 | 国产一区色 | 成人18视频在线观看 | 亚洲成人在线网站 | 日韩免费观看 | www.偷拍.com | 久久69精品久久久久久久电影好 |