我有以下測試方法:如何從ASP.NET .asmx返回JSON?
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
<WebService(Namespace:="http://tempuri.org/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<System.Web.Script.Services.ScriptService()> _
Public Class DemoService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function GetCustomer() As String
Return "Microsoft"
End Function
End Class
即使有ResponseFormat屬性添加的響應仍然被返回作爲XML而不是JSON。
想法感激。
目標是.NET 3.5的存在。 清除臨時文件仍然得到相同的響應。 – ChrisP 2009-11-06 04:13:16
您的代碼看起來很穩固,請嘗試將您的ScriptService標記更改爲 _。 –
2009-11-06 04:55:45