说我会在PHP中使用它:
<?php
$year = date('Y');
$month = date('m');
echo json_encode(array(
array(
'id' => 111,
'title' => "Event1",
'start' => "$year-$month-10",
'url' => "http://yahoo.com/"
),
array(
'id' => 222,
'title' => "Event2",
'start' => "$year-$month-20",
'end' => "$year-$month-22",
'url' => "http://yahoo.com/"
)
));
?>
我该怎么做才能在asp .net中获得等价物?
就像用户去过giveMeJson.aspx
一样
我希望它与giveMeSomeJson.php
一样返回。
由于
答案 0 :(得分:8)
在空的.aspx后面的代码中(使用Json.Net):
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication1
{
public partial class giveMeSomeJson : System.Web.UI.Page
{
protected override void OnLoad(EventArgs e)
{
Response.ContentType = "text/json";
var year = DateTime.Now.Year;
var month = DateTime.Now.Month;
Response.Write(JsonConvert.SerializeObject(new[]
{
new
{
id = "111",
title = "Event1",
start = String.Format("{0}-{1}-10", year, month),
url = "http://yahoo.com/"
},
new
{
id = "222",
title = "Event2",
start = String.Format("{0}-{1}-20", year, month),
url = "http://yahoo.com/"
}
}));
}
}
}
或者,只需使用.aspx中的代码:
<%@ Page Language="C#" %>
<%@ Import Namespace="Newtonsoft.Json" %>
<script runat="server">
string json = JsonConvert.SerializeObject(new[]
{
new
{
id = "111",
title = "Event1",
start = String.Format("{0}-{1}-10", DateTime.Now.Year, DateTime.Now.Month),
url = "http://yahoo.com/"
},
new
{
id = "222",
title = "Event2",
start = String.Format("{0}-{1}-20", DateTime.Now.Year, DateTime.Now.Month),
url = "http://yahoo.com/"
}
});
</script>
<%= json %>
答案 1 :(得分:7)
在ASP.NET中没有多种方式写入输出(有很多),您可以使用JavaScriptSerializer
或JSON.NET将.NET数组序列化为JSON,然后将其写入输出。
使用JSON.NET,它是:
Person[] arr = new[] { new Person { Name = "John" }, new Person { Name = "Jane" } };
string json = JsonConvert.SerializeObject(arr);
现在可以将json
字符串写入响应。您可以使用Literal
控件或<%= %>
语法,或直接写入响应对象等。
修改强>:
最简单的例子是:
<%@ Page Language="C#" %>
<%@ Import Namespace="Newtonsoft.Json" %>
<%
Person[] arr = new[] { new Person { Name = "John" }, new Person { Name = "Jane" } };
string json = JsonConvert.SerializeObject(arr);
%>
<%= json %>
这将完成页面本身的所有工作,如PHP,并将输出写入页面。
答案 2 :(得分:3)
如果您使用的是ASP.NET MVC,那么
public JsonResult GetSomeJson()
{
var myModel = getSomeModel
return Json(myModel);
}
更新 - 所以webforms?我不做网络表格,但它就像
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public MyModel GetSomeJson()
{
MyModel myModel = getSomeModel;
return myModel;
}