• 大小: 4KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-17
  • 语言: C#
  • 标签: AJAXJSON  

资源简介

C#写JSON,AJAX提取JSON中的数据!

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace Common
{
/// 
/// AnalysisJson 的摘要说明。
/// 

public class AnalysisJson : System.Web.UI.Page
{
private void Page_Load(object sender System.EventArgs e)
{

Common.Json json=new Json ();
json.Reset ();
json.success =true;
json.AddItem (“id““1“);
json.AddItem (“author““sky“);
json.AddItem (“url““http://www.sky.net“);
json.AddItem (“contents““hehe“);
json.ItemOk ();
string response=json.ToString ();
Response.Write (response.ToString ());
Response.End ();
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{    
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        116  2008-12-18 22:24  AnalysisJson.aspx

     文件       1281  2008-12-18 22:24  AnalysisJson.aspx.cs

     文件       1733  2002-01-30 13:04  AnalysisJson.aspx.resx

     文件       1375  2008-12-18 22:46  getJsonContent.aspx

     文件        970  2008-12-18 21:27  getJsonContent.aspx.cs

     文件       1733  2002-01-30 13:04  getJsonContent.aspx.resx

     文件       2544  2008-12-18 21:03  json.cs

----------- ---------  ---------- -----  ----

                 9752                    7


评论

共有 条评论

相关资源