I have an ASP.NET web application in c#.
I'm using fullCalendar control in my aspx page. Where I already selected some dates and stored in the DataBase.
Now, I have fetched those dates, but want to display them as selected in the FullCalendar control.
Can any one Please help me, how to bind number of Dates in FullCalendar.
I have tried this code:
<script> $("#calendar").fullCalendar('select', '2016-09-05', '2016-09-21'); </script>
But this one is, just hightlighting and when I select any other date, all these dates are disappearing.
And in the database I have different dates, like: "2016-09-05,2016-09-07,2016-09-08,2016-09-11,2016-09-15,2016-09-17"
I want to select these dates, programmatically.
Please help me guys.
Thanks