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.
Asked
Active
Viewed 986 times
1 Answers
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
-
1I want to do this .. Embedding JQuery Inside Your ASP.NET Server Side Custom Control. – Rahul Kumar Apr 17 '12 at 10:25