ASP.NET bir JSON Üstbilgi Oluşturma

2 Cevap

Ben ASP.net C # PHP bir komut dosyası dönüştürme duyuyorum. PHP, i gibi bir şey kullanabilirsiniz:

header ('Content-type: text / json');

header ('Content-type: application / json');

Onu nasıl bir JSON dosyasını yazdırırken başlığında beyan benim aspx sayfasını söyleyebilir?

2 Cevap

Response.ContentType = "application/json";

veya daha genel olarak

Response.Headers.Add("Content-type", "text/json");
Response.Headers.Add("Content-type", "application/json");

JerSchneid cevabı hakkında ek bilgiler

: Böyle bir hata mesajı var ise

Bu işlem, IIS entegre boru hattı modu gerektirir.

Bu şekilde kullanabilirsiniz:

Response.AddHeader("Content-type", "text/json");