Click here to Skip to main content
15,891,513 members
Articles / Web Development / ASP.NET
Article

An ASP.NET implementation of a Pop Up Calendar

Rate me:
Please Sign up or sign in to vote.
3.56/5 (23 votes)
15 Dec 20043 min read 336.2K   7.7K   72   43
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.NET
<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.

C#
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.

C#
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.

C#
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:

C#
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.

C#
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:

JavaScript
<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


Written By
Systems Engineer
United States United States
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.

Comments and Discussions

 
Questionfirefox compliant ? Pin
jocarina13-Jun-05 0:17
jocarina13-Jun-05 0:17 
AnswerRe: firefox compliant ? Pin
-Dy8-Sep-06 0:56
-Dy8-Sep-06 0:56 
Generalabout calendar in asp.net Pin
nirav9915-Feb-05 19:54
nirav9915-Feb-05 19:54 
GeneralJavaScript logic is flawed... Pin
drub0y28-Dec-04 8:01
drub0y28-Dec-04 8:01 
GeneralRe: JavaScript logic is flawed... Pin
apuzankov20-Apr-05 0:11
apuzankov20-Apr-05 0:11 
GeneralRe: JavaScript logic is flawed... Pin
ollidesign19-May-05 23:49
ollidesign19-May-05 23:49 
AnswerRe: JavaScript logic is flawed... Pin
ricpue9-Jan-06 4:57
ricpue9-Jan-06 4:57 
GeneralRe: JavaScript logic is flawed... Pin
sunilhp14-Oct-11 3:24
sunilhp14-Oct-11 3:24 
Hi All,
When I click on the Calendar button, I'm getting the below error message.

Microsoft JScript runtime error: '__Page_pnlCalendar' is undefined

Any help would be greatly appreciated!!

Thanks in advance!
Sunil
GeneralAlways the same limitation ... Pin
Sebastien Lorion21-Dec-04 20:41
Sebastien Lorion21-Dec-04 20:41 
GeneralRe: Always the same limitation ... Pin
spoodygoon27-Oct-07 2:20
spoodygoon27-Oct-07 2:20 
QuestionTwo controls in one row? Pin
lsteinmetz20-Dec-04 22:06
lsteinmetz20-Dec-04 22:06 
AnswerRe: Two controls in one row? Pin
iformacio21-Dec-04 1:53
iformacio21-Dec-04 1:53 
Generalzorder problem w/ dropdown control Pin
niner91117-Dec-04 9:37
niner91117-Dec-04 9:37 
GeneralRe: zorder problem w/ dropdown control Pin
niner91117-Dec-04 9:42
niner91117-Dec-04 9:42 
GeneralRe: zorder problem w/ dropdown control Pin
David Wulff17-Dec-04 10:58
David Wulff17-Dec-04 10:58 
GeneralRe: zorder problem w/ dropdown control Pin
Isaias Formacio-Serna17-Dec-04 14:16
Isaias Formacio-Serna17-Dec-04 14:16 
GeneralRe: zorder problem w/ dropdown control Pin
alexgd20-Dec-04 17:59
alexgd20-Dec-04 17:59 
GeneralRe: zorder problem w/ dropdown control Pin
iformacio20-Dec-04 18:09
iformacio20-Dec-04 18:09 
GeneralUnable to download your demo project Pin
LordDawnhunter14-Dec-04 20:30
LordDawnhunter14-Dec-04 20:30 
GeneralRe: Unable to download your demo project Pin
Isaias Formacio-Serna15-Dec-04 0:44
Isaias Formacio-Serna15-Dec-04 0:44 

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.