Click here to Skip to main content
15,867,308 members
Articles / Web Development / ASP.NET

Using the ASP.NET Calendar Control and Yahoo.UI.Calendar in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.73/5 (28 votes)
1 Mar 2007CPOL5 min read 384.3K   2.7K   89   55
Step by step guide for using the ASP.NET Calendar control or Yahoo.UI.Calendar in ASP.NET.

Introduction

The Calendar control becomes an essential control for business application developmentssince the most data entry forms have one or more fields for date values. Let's say, we are working on a page called "Candidate Resume Entry" of a Recruitment System. There will be some date fields such as "Date of Birth", "Resume Submitted Date" etc., in that page. The Calendar control needs to be used in the page. Let me stop talking about this here as I know you already know how Calendar control is important for your project.

There are three sections in this article, and each section has two parts: "Running the demo project" and "Lab". First, you can see how it looks like by running the demo application. Then, if you want to use this control in your project, you can read the details in "Lab".

The following topics will be covered in this article:

  • Using ASP.NET Calendar control in an ASP.NET project
  • Showing the ASP.NET Calendar control in a popup window
  • Using the Yahoo.UI.Calendar control in an ASP.NET project

Note:

  1. I'd highly recommend downloading the demo project before you start reading this article.
  2. Even though there are three different sections in my article, you can feel free to skip any section and move on to the next section.

Hopefully, you will find this useful.

Using the ASP.NET Calendar control in an ASP.NET project

This section was created only for beginners who haven't used the ASP.NET Calendar in a Web Project. Feel free to skip this section if you already know about it.

Running the sample

  1. Download and extract the zip file.
  2. Set SimpleCalendar.aspx as the Start Page.
  3. Run the web application.
  4. You will see the result below if you click the "..." button near the Date Of Birth textbox.

    Simple ASP.NET Calendar

  5. If you choose a date from the Calendar control, then the selected date will be shown in the textbox and the calendar will disappear.

Do you want to try this code in your own project?

Lab: Using the ASP.NET control in an ASP.NET project

  1. Create an ASP.NET Web Project (C#).
  2. Place a TextBox and a Button in a WebForm.
  3. ASP.NET
    <asp:TextBox ID="txtDOB" Runat="server"></asp:TextBox>
    <asp:Button ID="btnDOB" Runat="server" Text="..."></asp:Button>
  4. Add a Calendar control to the WebForm.
  5. (Thanks to the author of this article for a custom style calendar control. You can remove the style if you don't want to customize the appearance.)

    ASP.NET
    <asp:calendar id="cdrCalendar" runat="server" 
      backcolor="#ffffff" width="250px" height="200px" 
      font-size="12px" font-names="Arial" borderwidth="2px"
      bordercolor="#000000" nextprevformat="shortmonth" 
      daynameformat="firsttwoletters" Visible="False">
      <TodayDayStyle ForeColor="White" BackColor="Black"></TodayDayStyle>
      <NextPrevStyle Font-Size="12px" Font-Bold="True" ForeColor="#333333">
      </NextPrevStyle>
      <DayHeaderStyle Font-Size="12px" Font-Bold="True"></DayHeaderStyle>
      <TitleStyle Font-Size="14px" Font-Bold="True" BorderWidth="2px"
         ForeColor="#000055"></TitleStyle>
      <OtherMonthDayStyle ForeColor="#CCCCCC"></OtherMonthDayStyle>
    </asp:calendar>
  6. Add the following code in the Button's Click event:
  7. C#
    try
    {
      if(txtDOB.Text.Trim() != "")
          cdrCalendar.SelectedDate = Convert.ToDateTime(txtDOB.Text);
    }
    catch
    {}
    cdrCalendar.Visible= true;  //showing the calendar.
  8. Add the following code in the SelectionChanged event of the calendar:
  9. C#
    //displaying the selected date in TextBox
    txtDOB.Text = cdrCalendar.SelectedDate.ToString(); 
    cdrCalendar.Visible= false; //hiding the calendar.
  10. Finally, run your web application. You will see the same result as the picture above. That's. It is simple, isn't it?

Showing the ASP.NET Calendar control in a popup window

Now we have some idea about how to use the ASP.NET Calendar control. We can now try to improve our code. How about showing the Calendar in a pop-up window? Let's see...

Running the sample

  1. Set PopupCalendar.aspx as the Start Page.
  2. Run the web application. You will see the calendar in the pop-up window as in the picture below.
  3. Popup ASP.NET Calendar

Lab: Adding a pop-up Calendar control in your ow project

Here are some facts if you want to try this code in your own project:

  1. Three things you need to copy from the demo project to your project
    • Calendar.aspx under the Controls folder
    • Styles.css under CSS
    • pdate.gif and today.png under Images
  2. Two things you might need to check:
    • Path of the CSS of the Calendar control:
    • HTML
      <link href="../CSS/Styles.css" type="text/css" rel="stylesheet">
    • Path of the Calandar image:
    • HTML
      <asp:imagebutton id="BtnRefresh" runat="server" 
          ToolTip="Refresh" ImageUrl="../Images/today.png">
      </asp:imagebutton>
  3. Three things you need to add to the page that you want the Calendar to display in:
    • TextBox and HyperLink
    • HTML
      <asp:TextBox ID="txtDOB" Runat="server"></asp:TextBox>
      <asp:HyperLink id="imgDate" runat="server"
          ImageUrl="Images/pdate.gif">HyperLink</asp:HyperLink>
    • Adding a JavaScript function to the open pop-up window
    • HTML
      <script language="javascript" type="text/javascript">
      function calendarPicker(strTxtRef)
      {
        window.open('./Controls/Calendar.aspx?field=' + strTxtRef   + 
            '','calendarPopup','titlebar=no,left=470,top=100,' + 
            'width=300,height=250,resizable=no');    
      }
      </script>
    • Calling a JavaScript function:
    • JavaScript
      imgDate.NavigateUrl = 
           "javascript:calendarPicker('document.Form1." + 
            txtDOB.ClientID.ToString() + "');";

      Note: Form1 is the name of the web form that you want the calendar to display on it. If you are not sure about it, go to HTML view and check it. For example:

      HTML
      <form id="Form1" method="post" runat="server">
  4. Finally, you can start running your project and check whether it's working fine or not.

Using the Yahoo.UI.Calendar control in an ASP.NET project

Personally, I don't like that much about showing something in a pop-up window. So I was looking for something better. Then I came to know about the Yahoo! UI Library, which is an amazing JavaScript library, and it is compatible with most popular browsers. Let's take a look at the demo.

Running the sample project

  1. Set YahooUICalendarSimplePage.aspx as the Start Page.
  2. Run the web application. You will see the calendar in a pop-up window as in the following picture.
  3. Using Yahoo.UI.Calendar in ASP.NET

Lab: How to use Yahoo.UI.Calendar in your own ASP.NET project

You need to add the following stylesheets, JavaScript files, and images in your project.

  1. Stylesheets
    1. calendar.css
    2. dpSyntaxHighlighter.css
    3. fonts.css
    4. reset.css
  2. Stylesheets
    1. calendar.js
    2. dom.js
    3. event.js
    4. yahoo.js
  3. Image
    1. pdate.gif

In the ASPX file:

  1. Add the following code in the HEAD tag:
  2. HTML
    <script type="text/javascript" src="./JS/yahoo.js"></script>
    <script type="text/javascript" src="./JS/event.js"></script>
    <script type="text/javascript" src="./JS/dom.js"></script>
    
    <link type="text/css" rel="stylesheet" href="./CSS/fonts.css">
    <link type="text/css" rel="stylesheet" href="./CSS/reset.css">
    <link rel="stylesheet" type="text/css" 
             href="./CSS/dpSyntaxHighlighter.css">
            
    <script type="text/javascript" src="./JS/calendar.js"></script>
            
    <link type="text/css" rel="stylesheet" href="./CSS/calendar.css">
            
    <script language="javascript">
    YAHOO.namespace("example.calendar");
            
    function init() {  
      YAHOO.example.calendar.cal1 = new YAHOO.widget.Calendar(
          "YAHOO.example.calendar.cal1",
          "cal1Container"); 
      YAHOO.example.calendar.cal1.title = "Select the desired workout day:";
            
      YAHOO.example.calendar.cal1.onSelect = setDate1;
      YAHOO.example.calendar.cal1.render();
    
    }
    
    function showCalendar1(txtDateClientID,btnCalendarID) {
      this.link1 = document.getElementById(btnCalendarID);
      this.oTxtDate = document.getElementById(txtDateClientID);
      var pos = YAHOO.util.Dom.getXY(link1);
      YAHOO.example.calendar.cal1.oDomContainer.style.display='block';
      YAHOO.util.Dom.setXY(YAHOO.example.calendar.cal1.oDomContainer, 
                           [pos[0],pos[1]+link1.offsetHeight+1]);
    }
    
    function setDate1() {
      var date1 = YAHOO.example.calendar.cal1.getSelectedDates()[0];
      YAHOO.example.calendar.cal1.oDomContainer.style.display='none';
      var formattedDate = date1;
      oTxtDate.value = formattedDate.getDate()+'/'+ 
           (formattedDate.getMonth() +1) +'/'+ formattedDate.getFullYear();
    }
    
    YAHOO.util.Event.addListener(window, "load", init);
    </script>

    Note

    YAHOO.example.calendar.cal1.getSelectedDates() in the setDate1() function will return the selected date in the long date format. Even though I have converted the long date format to short date format (DD/MM/YYYY), you can remove the last line if you don't need it. "cal1Container" in init() is the ID of the DIV where the Yahoo.UI.Calendar support is to be attached.

  3. Put the following code in the Body tag:
  4. HTML
    <div id="cal1Container" style="DISPLAY: none; POSITION: absolute" ></div>
    <asp:TextBox ID="txtDOB" Runat="server"></asp:TextBox>
    <a id="chooseday" onclick="showCalendar1('<% =txtDOB.ClientID %>',
           'imgCalendar')" href="javascript:void(null)">
    <IMG id="imgCalendar" border="0" 
           alt="" src="Images/pdate.gif">

    Note:

    If you are using an HTML textbox in your page, you can just pass the ID of the textbox to the showCalendar1() function. In case the calendar is showing behind another control, you can set a higher Z-ORDER for the callContainer DIV which will be attached by Yahoo.UI.Calendar.

Update

Please take a look at this article if you want to add Yahoo.UI.Calendar in the BasePage or MasterPage.

Update

HOW TO Customize YAHOO.UI.CALENDAR.

This is a sample for adding two more arrows to the scroll for year by year.

Conclusion

Hopefully you may find this useful. (Again) This is the method that I used in some of my projects and I'm pretty sure that it works very well in most practical projects. If you have any question regarding this article, you can feel free to leave your question as a comment in my blog (http://michaelsync.net). I will reply to you as soon as possible. Thanks.

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Singapore Singapore
Michael Sync is a Microsoft MVP for Silverlight and a member of Microsoft WPF/Silverlight Insider Team.

Please find more details about me in my blog.

Comments and Discussions

 
QuestionCalender Control Pin
Revathy Cho3-Apr-13 20:22
Revathy Cho3-Apr-13 20:22 
GeneralMy vote of 5 Pin
Hans Candra7-Nov-10 22:24
Hans Candra7-Nov-10 22:24 
GeneralMy vote of 3 Pin
msg2swaroop@gmail.com21-Oct-10 21:33
msg2swaroop@gmail.com21-Oct-10 21:33 
GeneralI want date format like dd/mm/yyyy Pin
igaurav21-Jun-09 18:10
igaurav21-Jun-09 18:10 
GeneralRe: I want date format like dd/mm/yyyy Pin
igaurav21-Jun-09 21:17
igaurav21-Jun-09 21:17 
QuestionIs there any licence required to use Yahoo Calendar Pin
write2atif13-May-09 19:47
write2atif13-May-09 19:47 
AnswerRe: Is there any licence required to use Yahoo Calendar Pin
write2atif13-May-09 20:09
write2atif13-May-09 20:09 
QuestionYahoo UI calendar is free? Pin
Jay K R6-Mar-09 22:13
Jay K R6-Mar-09 22:13 
Generalcalender problem Pin
Miss Maheshwari28-Feb-08 21:23
Miss Maheshwari28-Feb-08 21:23 
GeneralRe: calender problem Pin
Michael Sync29-Feb-08 4:08
Michael Sync29-Feb-08 4:08 
GeneralCalendar Control Pin
Amy23love18-Oct-07 3:53
Amy23love18-Oct-07 3:53 
GeneralRe: Calendar Control Pin
Michael Sync18-Oct-07 4:46
Michael Sync18-Oct-07 4:46 
GeneralRe: Calendar Control Pin
Amy23love23-Oct-07 1:41
Amy23love23-Oct-07 1:41 
GeneralHelp on the convertion of Calendar User Control Pin
Liu xiaoyan20-Aug-07 11:39
Liu xiaoyan20-Aug-07 11:39 
GeneralRe: Help on the convertion of Calendar User Control Pin
Michael Sync20-Aug-07 16:01
Michael Sync20-Aug-07 16:01 
QuestionClasses Pin
kcrewjap22-May-07 13:10
kcrewjap22-May-07 13:10 
AnswerRe: Classes Pin
Michael Sync4-Jul-07 19:18
Michael Sync4-Jul-07 19:18 
Generaldatabinding Pin
scooby88825-Apr-07 7:07
scooby88825-Apr-07 7:07 
GeneralRe: databinding Pin
Michael Sync4-Jul-07 19:16
Michael Sync4-Jul-07 19:16 
Generalhi Pin
sarithak54820-Mar-07 3:33
sarithak54820-Mar-07 3:33 
GeneralNeed help !! ASP.NET Calendar Control in Popup Window Pin
maparash148-Mar-07 4:54
maparash148-Mar-07 4:54 
GeneralRe: Need help !! ASP.NET Calendar Control in Popup Window Pin
Michael Sync19-Mar-07 21:16
Michael Sync19-Mar-07 21:16 
GeneralRe: Need help !! ASP.NET Calendar Control in Popup Window Pin
Member 345785311-Dec-08 21:06
Member 345785311-Dec-08 21:06 
GeneralRe: Need help !! ASP.NET Calendar Control in Popup Window Pin
Member 345785312-Dec-08 0:26
Member 345785312-Dec-08 0:26 
GeneralAdd another arrows for year on calender Pin
Seuss24-Feb-07 8:29
Seuss24-Feb-07 8:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.