I'm using a ready made jquery date picker with ASP.NET text boxes. I'm also using MasterPage so here's what I've done so far -
Page linked to Master Page
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<link href="overcast/jquery-ui-1.8.15.custom.css" rel="Stylesheet" type="text/css" />
<script src="js/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.14.custom.min.js" type="text/javascript"></script>
<script>
$(function () {
$("#txtBeginDate").datepicker();
$("#txtEndDate").datepicker();
});
</script>
</asp:Content>
Two text box controls
<asp:TextBox ID="txtBeginDate" runat="server" Placeholder="Select Begin Date"></asp:TextBox> to
<asp:TextBox ID="txtEndDate" runat="server" Placeholder="Select End Date" />
But when I place cursor into these text boxes, the date picker doesn't show.
Please advice.