imported>Bbon (→사이트 링크) |
imported>Bbon (→사이트 링크) |
||
3번째 줄: | 3번째 줄: | ||
===사이트 링크=== | ===사이트 링크=== | ||
* [http://jsonlint.com/ json Validator] | * [http://jsonlint.com/ json Validator] | ||
+ | * [http://jsonformatter.curiousconcept.com/ json Formatter & validator] | ||
* [https://json.codeplex.com/ Json.Net] | * [https://json.codeplex.com/ Json.Net] | ||
2014년 10월 1일 (수) 01:23 기준 최신판
JSON
사이트 링크
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;
using System.Data.SqlClient;
using Newtonsoft.Json;
using System.Data;
using System.Web.Script.Services;
public partial class Serialization : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SelectMethod();
}
[WebMethod]
public static string SelectMethod()
{
SqlConnection con = new SqlConnection("Data Source=.; Initial Catalog=TestDB; User ID=sa; Password=Micr0s0ft");
{
SqlCommand cmd = new SqlCommand("select * from TestTable", con);
{
SqlDataAdapter sqlDa = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
sqlDa.Fill(dt);
string test = JsonConvert.SerializeObject(dt); // Serialization
//JsonConvert.DeserializeObject(test);
DataTable dtt = (DataTable)JsonConvert.DeserializeObject(test, dt.GetType());
return test;
}
}
}
}