J'ai créé un fichier ASMX avec un code derrière le fichier. Cela fonctionne bien, mais il produit du XML.
Cependant, j'en ai besoin pour générer du JSON. La configuration de ResponseFormat ne semble pas fonctionner. Mon code-behind est:
[System.Web.Script.Services.ScriptService]
public class _default : System.Web.Services.WebService {
[WebMethod]
[ScriptMethod(UseHttpGet = true,ResponseFormat = ResponseFormat.Json)]
public string[] UserDetails()
{
return new string[] { "abc", "def" };
}
}