Hello!
I was trying to use the RadScheduler, therefore I went and checked out its demos and tried to download each one of them to test it and to make it work for me to better understand how that control works.
However, the problem is that none of the demos worked, each one of them either missed a file (xml) or a database (I recreated the used databases but I still had other errors)
Finally I tried this demo https://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultvb.aspx?show-source=true and still got errors after putting the needed xml file in the App_Code directory.
My final error was the following: "SchedulerWebService" is not declared.
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
' Resets the example data on each page load.
Session.Remove(SchedulerWebService.ProviderSessionKey)
End If
End Sub
Protected Sub RadScheduler1_Load(sender As Object, e As EventArgs)
'this code clears the sessionkey for demo related purposes
Session.Remove(SchedulerWebService.ProviderSessionKey)
End Sub
Can you please provide me with a working code that I can test to be able to see how this scheduler works and then use it in my project? This is urgent.
Thank you!