Datepicker calendar control asp.net for visual studio 2005
Does anybody know of开发者_开发百科 a good datepicker calendar control for asp.net 2005? I went through a few but can't one that I like. The biggest problem I'm finding is, how do I clear a date after I picked it?
Thank you, -Tesh
try jquery datepicker :)
Its good, and it will solve your problem of clearing the date too and lots of cool themes :)
hope it helps
EDIT :
use this function inside the script :-
$(function () {
$("#txtDate").datepicker();
});
this in page
<td>
<asp:TextBox ID="txtDate" runat="server"></asp:TextBox>
</td>
also include all proper css and js files as per theme selected. you can directly link the files on internet or can store individual js/css files locally and then reference it.
Also see pagesource of this link. it will further clarify your concepts :)
Use a jQuery Date Picker by Rick Strahl. It's the only one I ever use. It's very simple.
精彩评论