You need to rebind your GridView on post backs. I imagine your code probably looks something like this:
protected void Page_Load(object sender, EventArgs e)
{
if(!Page.IsPostback)
{
//Bind Grind
}
}
Problem is, when a user selects a date, your grid is never bound again.
hth.
-Doug
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor / Author :.
Wrox Books 24 x 7
================================================== =========