0

我正在为我的 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) 尝试了代码。
我该怎么做才能成功调用服务器端代码?

4

1 回答 1

0

我认为您将需要使用 Web 服务并使用 http://yourwebsite/ yourService.asmx 调用它

在我们发言时,我正在尝试利用这一点,但找不到任何关于将日历连接到从 SQL 收集数据的 .net 服务的特定文档。

如果有人对此有任何信息,我将不胜感激。

干杯 Gwasshoppa

于 2012-08-06T02:10:10.750 回答