开发者

Loading events to fullcalendar from asp

开发者 https://www.devze.com 2023-02-01 02:29 出处:网络
I\'ve tried to load events from a json feed in asp: example taken from here The problem is that the webservice function, which is in a .aspx page, is never called. Firebug says it\'s all ok...

I've tried to load events from a json feed in asp: example taken from here

The problem is that the webservice function, which is in a .aspx page, is never called. Firebug says it's all ok... That's the code-behind:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load, Me.Load

End Sub


<WebMethod()> _
Public Shared Function getEventos(ByVal startDate As String, ByVal endDate As String) As String
    Try
        Return CalendarioMensualDAO.Instance.getEventos(startDate, endDate)开发者_JS百科



    Catch ex As Exception
        Throw New Exception("CalendarioMensual:getEventos: " & ex.Message)
    Finally

    End Try
End Function

And that's the fullcalendar events call:

events: "Default.aspx/getEventos",

Any ideas?


When you put the url Default.aspx/getEventos in your browser what do you get?

My php feed is events:'diary_feed.php?user=me&bank_hols=1', (comma at end because in the middle of the list of parameters)

and that page gives me [{"id":"142454","title":"test's'f","auth":"authorised","start":"2011-01-14","className":"unp_authorised","editable":true}]

0

精彩评论

暂无评论...
验证码 换一张
取 消