Hi there,
You can handle the DayRender event and then insert a new control (like a Literal) into the Controls collection of the Cell, like this:
Code:
protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{
if (e.Day.IsSelected)
{
Literal myLiteral = new Literal();
myLiteral.Text = "SomeText";
e.Cell.Controls.AddAt(e.Cell.Controls.Count, myLiteral);
}
}
Take a look at the following articles for more ideas and explanation:
http://odetocode.com/Articles/223.aspx
http://weblogs.sqlteam.com/jhermiz/a...n-ASP.net.aspx
Did you even resolve your other issues? I posted some pointers / tips but never heard back from you....
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
Beginning ASP.NET 3.5 : in C# and VB,
ASP.NET 2.0 Instant Results and
Dreamweaver MX 2004
Want to be my colleague? Then check out this post.