积少成多Flash(3) - ActionScript 3.0 基础之以文本形式、XML形式和JSON形式与ASP.NET通信...

[索引页]
[源码下载]


积少成多Flash(3) - ActionScript 3.0 基础之以文本形式、XML形式和JSON形式与ASP.NET通信


作者: webabcd


介绍
Flash ActionScript 3.0  以文本形式与ASP.NET通信、以XML形式与ASP.NET通信和以JSON形式与ASP.NET通信


示例
Text.aspx.cs
InBlock.gif using System; 
InBlock.gif using System.Data; 
InBlock.gif using System.Configuration; 
InBlock.gif using System.Collections; 
InBlock.gif using System.Web; 
InBlock.gif using System.Web.Security; 
InBlock.gif using System.Web.UI; 
InBlock.gif using System.Web.UI.WebControls; 
InBlock.gif using System.Web.UI.WebControls.WebParts; 
InBlock.gif using System.Web.UI.HtmlControls; 
InBlock.gif 
InBlock.gif public partial  class Text : System.Web.UI.Page 
InBlock.gif
InBlock.gif         protected  void Page_Load( object sender, EventArgs e) 
InBlock.gif        { 
InBlock.gif                 string s =  "name: " + Request.QueryString[ "name"] +  "; age: " + Request.QueryString[ "age"]; 
InBlock.gif 
InBlock.gif                Response.ClearContent(); 
InBlock.gif                Response.ContentType =  "text/plain"
InBlock.gif                Response.Write(s); 
InBlock.gif                Response.End(); 
InBlock.gif        } 
InBlock.gif}
 
Xml.aspx.cs
InBlock.gif using System; 
InBlock.gif using System.Data; 
InBlock.gif using System.Configuration; 
InBlock.gif using System.Collections; 
InBlock.gif using System.Web; 
InBlock.gif using System.Web.Security; 
InBlock.gif using System.Web.UI; 
InBlock.gif using System.Web.UI.WebControls; 
InBlock.gif using System.Web.UI.WebControls.WebParts; 
InBlock.gif using System.Web.UI.HtmlControls; 
InBlock.gif 
InBlock.gif public partial  class Xml : System.Web.UI.Page 
InBlock.gif
InBlock.gif         protected  void Page_Load( object sender, EventArgs e) 
InBlock.gif        { 
InBlock.gif                 string s =  @"<?xml version=""1.0 "" encoding=""utf-8""?> 
InBlock.gif                        <root> 
InBlock.gif                                <person name= ""webabcd"" age= ""27""> 
InBlock.gif                                        <salary>1000</salary> 
InBlock.gif                                </person> 
InBlock.gif                                <person name= ""webabcdefg"" age= ""37""> 
InBlock.gif                                        <salary>2000</salary> 
InBlock.gif                                </person> 
InBlock.gif                                <person name= ""webabcdefghijklmn"" age= ""47""> 
InBlock.gif                                        <salary>3000</salary> 
InBlock.gif                                </person> 
InBlock.gif                        </root>"; 
InBlock.gif 
InBlock.gif                Response.ClearContent(); 
InBlock.gif                Response.ContentType =  "text/xml"
InBlock.gif                Response.Write(s); 
InBlock.gif                Response.End(); 
InBlock.gif        } 
InBlock.gif}
 
JSON.aspx.cs
InBlock.gif using System; 
InBlock.gif using System.Data; 
InBlock.gif using System.Configuration; 
InBlock.gif using System.Collections; 
InBlock.gif using System.Web; 
InBlock.gif using System.Web.Security; 
InBlock.gif using System.Web.UI; 
InBlock.gif using System.Web.UI.WebControls; 
InBlock.gif using System.Web.UI.WebControls.WebParts; 
InBlock.gif using System.Web.UI.HtmlControls; 
InBlock.gif 
InBlock.gif public partial  class JSON : System.Web.UI.Page 
InBlock.gif
InBlock.gif         protected  void Page_Load( object sender, EventArgs e) 
InBlock.gif        { 
InBlock.gif                Person person =  new Person(); 
InBlock.gif                person.Name =  "webabcd"
InBlock.gif                person.Age = 27; 
InBlock.gif 
InBlock.gif                HttpContext.Current.Response.ClearContent(); 
InBlock.gif                 // HttpContext.Current.Response.ContentType = "application/json"; 
InBlock.gif                HttpContext.Current.Response.ContentType =  "text/plain"
InBlock.gif 
InBlock.gif                 // 把person对象序列化成JSON 
InBlock.gif                System.Runtime.Serialization.DataContractJsonSerializer dcjs =  new System.Runtime.Serialization.DataContractJsonSerializer(person.GetType()); 
InBlock.gif                dcjs.WriteObject(HttpContext.Current.Response.OutputStream, person); 
InBlock.gif 
InBlock.gif                HttpContext.Current.Response.End(); 
InBlock.gif        } 
InBlock.gif
InBlock.gif 
/// <summary> 
/// Person类 
/// </summary> 
InBlock.gif[System.Runtime.Serialization.DataContract] 
InBlock.gif public  class Person 
InBlock.gif
InBlock.gif         private  string _name; 
InBlock.gif         /// <summary> 
InBlock.gif         /// 姓名 
InBlock.gif         /// </summary> 
InBlock.gif        [System.Runtime.Serialization.DataMember] 
InBlock.gif         public  string Name 
InBlock.gif        { 
InBlock.gif                get {  return _name; } 
InBlock.gif                set { _name = value; } 
InBlock.gif        } 
InBlock.gif 
InBlock.gif         private  int _age; 
InBlock.gif         /// <summary> 
InBlock.gif         /// 年龄 
InBlock.gif         /// </summary> 
InBlock.gif        [System.Runtime.Serialization.DataMember] 
InBlock.gif         public  int Age 
InBlock.gif        { 
InBlock.gif                get {  return _age; } 
InBlock.gif                set { _age = value; } 
InBlock.gif        } 
InBlock.gif}
 
Net.as
package 

        import flash.display.Sprite; 
        import flash.net.URLLoader; 
        import flash.net.URLRequest; 
        import flash.net.URLVariables; 
        import flash.net.URLRequestMethod; 
        import flash.events.Event; 
         
        // 对JSON的支持 
        import com.adobe.serialization.json.JSON; 
         
        public class Net extends Sprite 
        { 
                public function Net() 
                { 
                        // 以文本形式与ASP.NET通信 
                        showText(); 
                         
                        // 以XML形式与ASP.NET通信 
                        showXml(); 
                         
                        // 以JSON形式与ASP.NET通信 
                        showJSON(); 
                } 
                 
                // 以文本形式与ASP.NET通信 
                function showText():void 
                { 
                        var v:URLVariables = new URLVariables("name=webabcd&age=27"); 
                        var r:URLRequest = new URLRequest(); 
                        r.url = "http://localhost:1343/Web/Text.aspx"; 
                        r.method = URLRequestMethod.GET; 
                        r.data = v; 
                         
                        var l:URLLoader = new URLLoader(); 
                        l.load(r); 
                        l.addEventListener(Event.COMPLETE, textCompleteHandler); 
                } 
                 
                function textCompleteHandler(event:Event):void 
                { 
                        var l:URLLoader = URLLoader(event.target); 
                         
                        trace(l.data); 
                        // output: name: webabcd; age: 27 
                } 
                 
                // 以XML形式与ASP.NET通信 
                function showXml():void 
                { 
                        var v:URLVariables = new URLVariables() 
                        var r:URLRequest = new URLRequest(); 
                        r.url = "http://localhost:1343/Web/Xml.aspx"; 
                        r.method = URLRequestMethod.GET; 
                        r.data = v; 
                         
                         
                        var l:URLLoader = new URLLoader(); 
                        l.load(r); 
                        l.addEventListener(Event.COMPLETE, xmlCompleteHandler); 
                } 
                 
                function xmlCompleteHandler(event:Event):void 
                { 
                        var l:URLLoader = event.target as URLLoader; 
                        var xml:XML = new XML(l.data); 
                         
                        for each(var v in xml.person) 
                        { 
                                trace("姓名:" + v.@name + ";年龄:" + v.@age + ";薪水:" + v.salary); 
                        } 
                        // output:    
                        // 姓名:webabcd;年龄:27;薪水:1000 
                        // 姓名:webabcdefg;年龄:37;薪水:2000 
                        // 姓名:webabcdefghijklmn;年龄:47;薪水:30 
                } 
                 
                // 以JSON形式与ASP.NET通信 
                function showJSON():void 
                { 
                        var v:URLVariables = new URLVariables() 
                        var r:URLRequest = new URLRequest(); 
                        r.url = "http://localhost:1343/Web/JSON.aspx"; 
                        r.method = URLRequestMethod.GET; 
                        r.data = v; 
                         
                         
                        var l:URLLoader = new URLLoader(); 
                        l.load(r); 
                        l.addEventListener(Event.COMPLETE, jsonCompleteHandler); 
                } 
                 
                function jsonCompleteHandler(event:Event):void 
                { 
                        var l:URLLoader = event.target as URLLoader; 
                         
                        var v:* = JSON.decode(l.data); 
                         
                        trace("姓名:" + v.Name + ";年龄:" + v.Age); 
                        // output: 姓名:webabcd;年龄:27 
                } 
        } 
}
 
 





     本文转自webabcd 51CTO博客,原文链接: http://blog.51cto.com/webabcd/342184 ,如需转载请自行联系原作者

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值