Board index » Web Programming » control Calendar's visibility
|
RachaelE
|
control Calendar's visibility
Web Programming267
I want to click on the body and make the startCalendar.Visible = "false"... but it's not working... public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void startButton_Click(object sender, ImageClickEventArgs e) { startCalendar.Visible = true; } } something like... protected void calendarClear(object sender, EventArgs e) { startCalendar.Visible = false; } and place it in on the <body onclick="calendarClear"> .</body> thanks -- Sent via .NET Newsgroups www.dotnetnewsgroups.com - |
