I have a calendar in my aspx page that is as follows:\[code\]<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>\[/code\]And the code behind is very simple. \[code\]protected void Calendar1_DayRender(object sender, DayRenderEventArgs e) { Response.Write("test"); if (!e.Day.IsToday) { Label aLabel = new Label(); aLabel.Text = " <br>test"; e.Cell.Controls.Add(aLabel); date.Text = e.Day.ToString(); } }\[/code\]My ultimate goal is to add text from a database for events but at the moment I cannot even make the function itself execute. The response.writes are nowhere on the page and the word "test" does not appear on all of the dates except today (which is what should happen to my understanding).