This event calendar implements JQuery FullCalendar in ASP.NET.
Features of this event calendar
- Create single day events
- Create multiple day events
- Create all day events
- Update existing events
- Delte events
- You can add a name and description of the event
- When you hover over an event opens a modal window with more information about the event
- Drag & Drop events
- Rezise events
EventDAO
class is the main class which interacts with the database and SQL Server express edition has been used. The event information is stored in a table named Event
in the database.
Column Name | Data Type |
---|---|
event_id | int [identity] |
title | VarChar(100) |
description | VarChar(200) |
event_start | DateTime |
event_end | DateTime |
all_day | Bit |
To open the project, just open Visual Studio then File -> Open Website and select the solution folder
Note: For .NET Core version, visit my other repo: FullCalendar .NET Core with Visual Studio
If you would like to support my work and the time I put into making tutorials, consider getting me a coffee by clicking on the image below. I would really appreciate it!
Esau Silva