开发者

Datepicker calendar control asp.net for visual studio 2005

开发者 https://www.devze.com 2023-02-19 15:26 出处:网络
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 afte

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消