Click here to Skip to main content
15,890,408 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am creating an application in asp.net to publish schedules of a school class, and I'm using jquery weekly calendar. What I want to know how can I connect this to my calendar database sql. Thank you
Posted

1 solution

The calendar can use JSON data, so you can get calendar events from your database for displaying on load, and convert to JSON to send to a method that will save

http://stackoverflow.com/questions/6680878/how-to-retrieve-info-from-database-using-ajax-json-jquery-week-calendar[^]

You have an eventNew event that occurs whenever you add a new item to the calendar, you can write a handler to for this + send the data to some sort of service that will perform the database operation.

If you're writing in ASP.Net Webforms, a web service will probably be the easiest way to achieve this
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900