문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. =JSON= ===사이트 링크=== * [http://jsonlint.com/ json Validator] * [http://jsonformatter.curiousconcept.com/ json Formatter & validator] * [https://json.codeplex.com/ Json.Net] <syntaxhighlight lang="csharp" title="Json.Net Sample Code">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; } } } }</syntaxhighlight> Json 문서로 돌아갑니다.