展开全部
新建一个 一般处理程序文件 Handler1.ashx
然后在Handler1.ashx.cs 里面写如下代码 public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string json = "[{'user_id':'123'}]";
context.Response.Write(json);
}
前台 用ajax 访问 Handler1.ashx 就可以得到json 数据了
建议 用jquery 的ajax 方法
$.ajax({
type: "POST",
url: "Handler1.ashx",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});
然后在Handler1.ashx.cs 里面写如下代码 public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string json = "[{'user_id':'123'}]";
context.Response.Write(json);
}
前台 用ajax 访问 Handler1.ashx 就可以得到json 数据了
建议 用jquery 的ajax 方法
$.ajax({
type: "POST",
url: "Handler1.ashx",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});
展开全部
下载 Newtonsoft.Json.dll
在web项目中添加引用
string Json = JsonConvert.SerializeObject(GetData(), new DataTableConverter());
//将datatable转成Json格式返回
这是.net下面处理json最好的类。可以试试
在web项目中添加引用
string Json = JsonConvert.SerializeObject(GetData(), new DataTableConverter());
//将datatable转成Json格式返回
这是.net下面处理json最好的类。可以试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static string DataTableToJson(DataTable dt, string JsonName)
{
try
{
if (dt == null)
{
return "DataTable Is Null ,So I Can't Do It To Json!";
}
string josn = "\"" + JsonName + "\":[";
string temp = "";
for (int j = 0; j < dt.Rows.Count; j++)
{
temp = temp + "{";
for (int i = 0; i < dt.Columns.Count; i++)
{
temp += "\"" + dt.Columns[i].ColumnName.ToLower() + "\":\"" + dt.Rows[j][i] + "\"";
if (i != dt.Columns.Count - 1)
{
temp = temp + ",";
}
}
if (j == dt.Rows.Count - 1)
{
temp = temp + "}";
}
else
{
temp = temp + "},";
}
}
josn = josn + temp + "]";
return josn;
}
catch (Exception ex)
{
return "Codeing is Error----" + ex.ToString();
}
}
datatable 转json、
{
try
{
if (dt == null)
{
return "DataTable Is Null ,So I Can't Do It To Json!";
}
string josn = "\"" + JsonName + "\":[";
string temp = "";
for (int j = 0; j < dt.Rows.Count; j++)
{
temp = temp + "{";
for (int i = 0; i < dt.Columns.Count; i++)
{
temp += "\"" + dt.Columns[i].ColumnName.ToLower() + "\":\"" + dt.Rows[j][i] + "\"";
if (i != dt.Columns.Count - 1)
{
temp = temp + ",";
}
}
if (j == dt.Rows.Count - 1)
{
temp = temp + "}";
}
else
{
temp = temp + "},";
}
}
josn = josn + temp + "]";
return josn;
}
catch (Exception ex)
{
return "Codeing is Error----" + ex.ToString();
}
}
datatable 转json、
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询