ARTICLE
JavaScript Calendar Control in ASP.NET 2.0
The problem with ASP.NET Calendar control is it refreshes the page every time any event is fired. To avoid this, we have to use JavaScript Calendar control.
In this article, I am going to explain, how we can use a JavaScript Calendar control in ASP.NET 2.0. In this article I am using a JavaScript file (Calendar.js) and a CSS file (Calendar.css). JavaScript file has all functions and methods, which are used in calendar and CSS file has all calendar style sheets.
You can call JavaScript file on page like this:
<script language="javascript" src=Calendar.js type="text/javascript"></script>
and stylesheet file like this:
<link href=Calendar.css rel="stylesheet" type="text/css">
Here is a snapshot of Calendar control.

Figure 1:
You can call JavaScript file on a Button click event handler.