在 asp.net 中使用 Web 服务时,我想要一个示例 web.config 代码仅生成 JSON 格式。
我使用了网络服务 asp.net 3.5,我的代码在这里:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string HelloWorld() {
string json = "hello world";
return json;
}
然后我的输出在这里:
<string>hello world</string>
问题是我想成为 JSON 格式的输出,现在是 XML。我知道我需要编辑 web.config 文件,但我不确切知道。因此给我一个示例 web.config 文件来生成 JSON 格式。