I have this issue calendar project that I am working with. It has a javascript
running to add events. I wanted to get those events and save it in MS SQL
. However I have no Idea. If i can get the javascript
events to C#
code behind I can save it. If you can help me get the javascript
data to C#.net
or if you can help me to directly save javascript
to MS SQL
that would be helpful. Here is part of the javascript
intended to create event on a calendar.
select: function (start, end, allDay) {
bootbox.prompt("New Event Title:", function (title) {
if (title !== null) {
calendar.fullCalendar('renderEvent',
{
title: title,
start: start,
end: end,
allDay: allDay,
className: 'label-info'
},
true
);
}
});
calendar.fullCalendar('unselect');
}