我正在为我的 ASPX 编程使用 VisualBasic,并希望为全日历做一个 JSON 提要。我有这个:
$('#calendar').fullCalendar('addEventSource','ajax.vb/Test');
Imports System.Web
Imports System.Web.UI
Imports System.Web.Services
Imports System.Web.UI.WebControls
Imports System.Web.Script.Services
Imports System.Web.Services.Protocols
Imports System.Data.OleDb
<ScriptService()> _
Partial Public Class ajax
<WebMethod()> _
Public Shared Function Test(ByVal start As String, ByVal ende As String) As String
Dim EventSource As String = ""
Return EventSource
End Function
End Class
我回来了:
“NetworkError: 403 Forbidden - =1343731700843">http://localhost:58749/ajax.vb/Test?start=1341093600&ende=1344722400&=1343731700843”
Pagetype 不会被处理。
说明:请求的页面类型没有被处理,因为它被明确禁止。
我必须使用PHP(我真的不想)还是我做了某事。服务器端错了?我用上面的 vb-Class、.aspx 页面和 WebService (.asmx) 尝试了代码。
我该怎么做才能成功调用服务器端代码?