Date Format for C#

The DateTime data type is used to work with date and times in C#. The DateTime class in C# provides properties and methods to format dates in different datetime formats. This article explains how to work with date and time format in C#. The following table describes various date time formats and their results. Here … Continue reading Date Format for C#

How to make a calendar using jQuery and disable specific date from the array

CSS for the calendar Design . /* Reset */ .ui-datepicker, .ui-datepicker table, .ui-datepicker tr, .ui-datepicker td, .ui-datepicker th { margin: 0; padding: 0; border: none; border-spacing: 0; } /* Calendar Wrapper */ .ui-datepicker { display: none; width: 294px; padding: 35px; cursor: default; text-transform: uppercase; font-family: Tahoma; font-size: 12px; background: #141517; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: … Continue reading How to make a calendar using jQuery and disable specific date from the array