yeah
i have added a text box and a calendar and i have set the visible property of calendar to false
<asp:calendar id=Calendar1 runat="server" Visible="False"></asp:calendar>
and in the textbox i used the following code
<INPUT id=txtDateOfBirth onmousedown="txtDateOfBirth_Click"
type=text runat="server">
and in my code behind page(C#) i wrote the following code
public void txtDateOFBirth_Click(object sender, System.EventArgs e)
{
Calendar1.Visible=true;
}
it didn't work for onmousedown so i used onclick method but it's still not working
thank you