This article demonstrates how to display multiple months in jQuery UI datepicker and integrate with asp.net textbox control. You can set datepicker option numberofMonths to display multiple months in datepicker. I have set numberofMonths:2 to include two month in datepicker.
Here’s the example
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js"
type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"
type="text/javascript"></script>
<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/themes/blitzer/jquery-ui.css"
type="text/css" media="all" />
<script type="text/javascript">
$(function () {
$("#<%= TextBox1.ClientID %>").datepicker({
numberOfMonths: 2
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>
Output

Download
multiple-month-JQuery-UI-Datepicker.aspx (956.00 bytes)
see live demo