オブジェクトの美化された json シリアル化を返して、Response.Write を使用して ASP.NET に出力しようとしています。これが私のコードです。ユーザー入力を検証しないという明らかな犯罪を気にする必要はありません。これは単なるばかげた小さなテスト アプリです。
try
{
var customer = this.sc.GetCustomer(Convert.ToInt32(TextBox1.Text));
var json = JsonConvert.SerializeObject(customer, Formatting.Indented);
Response.Write(json);
}
catch (Exception ex)
{
Response.Write("An error occurred: " + ex.Message);
}
Formatting.Indented は効果がないようです。私は何を間違っていますか?