Click here to Skip to main content
Licence 
First Posted 14 Dec 2004
Views 180,683
Bookmarked 70 times

An ASP.NET implementation of a Pop Up Calendar

By | 15 Dec 2004 | Article
There are many implementations of this control but I found some problems using them mainly because of the JavaScript and ASP.NET interoperabiltiy, this control lets you place a calendar that pops up without post-back and you can use it as many times as you want in the same form.

Sample screenshot

Introduction

There are several implementations of this control on the web. I based mine on Paul Kilmer's but made many changes after I could not get it to work; many of them were changing the HTML controls for actual ASP.NET controls, as this would give me a better control in the code behind of my control, and you will see this in the code.

Creating the Control

First, you need to create a new control, in this case, I called it ctlCalendar. In this control, you will need to add a TextBox (TextBox1) from the Web Forms toolbox, a Button (Button1) from the HTML toolbar, a Panel (Panel1) from the Web Forms toolbox, and finally inside this Panel, a Calendar control (Calendar1) from the Web Forms toolbox. Notice that I used Button1 from the HTML toolbar because I need it not post back when the user clicks it.

This is how your control's HTML would look like:

Sample screenshot

<asp:textbox id="TextBox1" runat="server"></asp:textbox>
<input type="button" id="Button1" runat="server" value="..."><br>
<asp:Panel id="pnlCalendar" runat="server" 
     style="POSITION: absolute">
 <asp:calendar id="Calendar1" runat="server" CellPadding="4" 
      BorderColor="#999999" Font-Names="Verdana" Font-Size="8pt" 
      Height="180px" ForeColor="Black" DayNameFormat="FirstLetter" 
      Width="200px" BackColor="White">
  <TodayDayStyle ForeColor="Black" BackColor="#CCCCCC"></TodayDayStyle>
  <SelectorStyle BackColor="#CCCCCC"></SelectorStyle>
  <NextPrevStyle VerticalAlign="Bottom"></NextPrevStyle>
  <DayHeaderStyle Font-Size="7pt" Font-Bold="True" BackColor="#CCCCCC">
  </DayHeaderStyle>
  <SelectedDayStyle Font-Bold="True" ForeColor="White" BackColor="#666666">
  </SelectedDayStyle>
  <TitleStyle Font-Bold="True" BorderColor="Black" BackColor="#999999">
  </TitleStyle>
  <WeekendDayStyle BackColor="LightSteelBlue"></WeekendDayStyle>
  <OtherMonthDayStyle ForeColor="#808080"></OtherMonthDayStyle>
 </asp:calendar>
</asp:Panel>

Creating the functionality

Now, we will use two functions to create the functionality; the first one is the Page_Load on which we initialize our controls and Calendar1_SelectionChanged.

private void Page_Load(object sender, System.EventArgs e)
{
    if (!Page.IsPostBack)
    {
        this.TextBox1.Text = System.DateTime.Now.ToShortDateString();
        this.pnlCalendar.Attributes.Add("style", 
             "DISPLAY: none; POSITION: absolute");
    }
    else
    {
        string id = Page.Request.Form["__EVENTTARGET"].Substring(0, 
                    Page.Request.Form["__EVENTTARGET"].IndexOf(":"));
        if (id != this.ID) 
        {
            this.pnlCalendar.Attributes.Add("style", 
                 "DISPLAY: none; POSITION: absolute");
        }
        else
        {
            this.pnlCalendar.Attributes.Add("style","POSITION: absolute");
        }
    }
    Page.RegisterClientScriptBlock("Script_Panel" + this.ID, 
      "<script> function On"+this.ID+"Click() {  if(" + 
      this.ID + "_pnlCalendar.style.display == \"none\")       " 
      + this.ID + "_pnlCalendar.style.display = \"\";   else    " 
      + this.ID+"_pnlCalendar.style.display = \"none\"; } </script>");
    this.Button1.Attributes.Add("OnClick","On"+this.ID+"Click()");}

In the Page_Load function, the first thing I do is initiate the Text property of the TextBox with the current date, just not to leave it blank. Then comes a little trick that I learned while making this article, when you change the month in the calendar, it does a post back, and if we have many calendars, we need to know which control exactly did the post back so we won’t hide that specific calendar; and that’s where we will access the __EVENTTARGET hidden field that will tell us which calendar is in action.

string id = Page.Request.Form["__EVENTTARGET"].Substring(0, 
       Page.Request.Form["__EVENTTARGET"].IndexOf(":"));

Then I just compare if it’s not the calendar I am working with, I’ll hide it or else just leave it with an absolute position.

if (id != this.ID)
{
    this.TextBox1.Text = System.DateTime.Now.ToShortDateString();
    this.pnlCalendar.Attributes.Add("style", 
         "DISPLAY: none; POSITION: absolute");
}
else
{
    this.pnlCalendar.Attributes.Add("style","POSITION: absolute");
}

In the next lines, I register a client script, this is the actual JavaScript that is going to show the calendar when they click the button, it looks a bit complex so I will explain it in depth.

When you add multiple controls to the same form, each control gets its own name (in this case, ctlCalendar) followed by a number (for the first control, it will be CtlCalendar1). Knowing this, I wrote a line that will create a JavaScript function for each control created, using the this.ID property:

Page.RegisterClientScriptBlock("Script_" + this.ID, 
      "<script> function On"+this.ID+"Click() { if("+this.ID+
      "_pnlCalendar.style.display == \"none\") "+this.ID+
      "_pnlCalendar.style.display = \"\"; else "+this.ID+
      "_pnlCalendar.style.display = \"none\"; } </script>");

And then added that function to the Button itself.

this.Button1.Attributes.Add("OnClick","On"+this.ID+"Click()");

Also, in order to access the Panel's actual properties, you need to know your Panel's name. This name is composed when generated as the control's name (ctlCalendar1) and then the Panel's name (Panel1) separated with an underscore (ctlCalendar1_Panel1 for the first ctlCalendar added to the page).

Let's see the JavaScript code generated for the first Calendar in the page:

<Script> 
 function OnCtlCalendar1Click() 
 {  
  if(CtlCalendar1_pnlCalendar.style.display == "none")     
   CtlCalendar1_pnlCalendar.style.display = "";   
  else    
   CtlCalendar1_pnlCalendar.style.display = "none"; 
 } 
</script>

Here, we see how the function has its own name (OnCtlCalendar1Click()) and we also generated the final name of the Panel (CtlCalendar1_pnlCalendar) in order to make it invisible with the display property. The following controls you add will take consecutive numbers and so will their functions, allowing you to use as many controls as you need.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Isaias Formacio-Serna

Systems Engineer

United States United States

Member

Isaias Formacio-Serna is a Computer Science Engineer, graduated from ITESM Campus Monterrey in May 2003, he started developing in Visual Studio .NET since the first beta version back in the summer of 2001. He enjoys developing with C# Windows Forms, ASP.NET and Windows Mobile applications.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionChange month, calendar disappear PinmemberJesSab15:59 9 Feb '12  
QuestionGetting the following error in javascript PinmemberMember 80933391:15 5 Aug '11  
GeneralMy vote of 5 Pinmembersdfdsfdsdgdgdhztr23:50 18 Oct '10  
QuestionFirefox does not work PinmemberPeter Winterberg3:30 17 Oct '10  
GeneralMy vote of 5 Pinmembersugandhichalamalla6:39 30 Sep '10  
QuestionHow Can I use ImageButton instead ? PinmemberDocHoliday6610:12 29 Apr '10  
GeneralStill have problem when click on NextMonth or PreviousMonth PinmemberNirav Parekh5:35 17 Mar '09  
GeneralSolution not working in Visual Studios 2008 PinmemberShadowrifter6:32 5 Jan '09  
GeneralRe: Solution not working in Visual Studios 2008 PinmemberMember 11796652:27 7 Jan '09  
Questiontextbox Pinmemberjorgt23:47 7 Sep '08  
GeneralMaster page problem Pinmemberhdboghani3:43 25 Apr '08  
Generalvery good PinmemberGaoYu200019:31 13 Aug '07  
QuestionRe: very good PinmemberAshley720:55 15 Aug '07  
GeneralRe: very good PinmemberAshley714:07 16 Aug '07  
GeneralBug in Calendar Control Pinmemberjbher7:43 4 Nov '06  
QuestionWhy HTML Button? PinsussGennaro Borrelli4:25 28 Sep '05  
GeneralReferencing TextBox1 value Pinmembertodd.n.hovland8:14 29 Aug '05  
GeneralRe: Referencing TextBox1 value Pinmembertodd.n.hovland6:38 31 Aug '05  
JokeRe: Referencing TextBox1 value Pinmemberricpue6:10 8 Jan '06  
AnswerRe: Referencing TextBox1 value Pinmemberricpue6:19 8 Jan '06  
Questionfirefox compliant ? Pinmemberjocarina0:17 13 Jun '05  
AnswerRe: firefox compliant ? Pinmember-Dy0:56 8 Sep '06  
Generalabout calendar in asp.net Pinmembernirav9919:54 15 Feb '05  
GeneralJavaScript logic is flawed... Pinmemberdrub0y8:01 28 Dec '04  
GeneralRe: JavaScript logic is flawed... Pinmemberapuzankov0:11 20 Apr '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 16 Dec 2004
Article Copyright 2004 by Isaias Formacio-Serna
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid