The ASP.net/C# code works perfectly.
Many thanks,
Eric
]]>protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
if (txtDate.Text == “”)
dateField.Style["display"] = “block”;
else
dateField.Style["display"] = “none”;
}
}
hope it helps for keeping div visible for choosing month.
It works on my application
Many thanks!
]]>