0

Please can any body provide the code example. how to embedded jquery datapicker in asp.net textbox.. Mean how do i create this using asp.net control with jquery.

Rahul Kumar
  • 528
  • 1
  • 3
  • 19

1 Answers1

0

If you are having a problem associating a ASP.NET Textbox for use with the jQuery DatePicker, then this should help:

<script>
    $(function() {
        $("<%=Date.ClientID %>").datepicker();
    });
</script>
<div class="demo">
     <p>Date: <asp:TextBox ID="Date" runat="server" /></p>
</div>
SurinderBhomra
  • 2,169
  • 2
  • 24
  • 49