Hello
I am using JQuery Datepicker inline with 12 number of months.
And i want to mark some specific dates those are stored in sql server.
And i want to add dynamic tool tip for those dates(not necessary).
At now i m doing this
<script>
$
(function () {
$
("#datepicker").datepicker(
{
numberOfMonths
: 12
}
);
});
</script>
</head>
<body>
<form id="form1" runat="server">
<br /><br />
<div id="datepicker" style="font-size:10px;">
</div>
</form>
</body>
</html>
I have tried following with asp calendar but i required multiple months to show, so i go for JQuery
foreach (DataRow dr in ds.Tables[0].Rows)
{
dt
=DateTime.Parse(dr["Dates"].ToString());
clndrJan
.SelectedDates.Add(dt);
}
Please help
Thank you