标签: ajax vb.net webmethod
下面是WebMethod的定义,但我遇到了错误
WebMethod
<WebMethod()> _ <ScriptService()> Public Function GetCountryByIP(ipAddress As String) As String Return "Hello World" End Function
错误132属性'ScriptServiceAttribute'无法应用于'GetCountryByIP',因为该属性在此声明类型上无效。
答案 0 :(得分:0)
error message很清楚。
根据documentation ScriptServiceAttribute必须应用于类,而不能应用于方法。
ScriptServiceAttribute