kk.
kk.

Reputation: 687

Accessing Calendar control through Javascript

I have a asp.net calendar control, say Calendar1, in invisible state (visible = false ). How can I set visible to true using javascript when i press a client side button so that there is no postback done ?

Upvotes: 0

Views: 1985

Answers (1)

Aaron Powell
Aaron Powell

Reputation: 25099

You really want the ASP.NET AJAX Control Toolkit for this - http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Calendar/Calendar.aspx

The standard ASP.NET calendar control isn't designed for good client implementations, it posts waaaaaaaaay to much!

Upvotes: 1

Related Questions