In VS2010 the date time picker control is not available in toolbox. Their is only calender control. but if need to use date picker control in our form stylist j query date picker we can easily do it. let see some stylist datepicker from http://jqueryui.com/themeroller/
You can also choose much more from http://jqueryui.com/themeroller/ . select which theme you want to use and download it. extract the zip file. after extract you will see the file as like
we will use the css and the js folder data in our application.
Open visual studio 2010 select a new ASP.NET web application, after creating the project add the js and css from the downloaded file.
In your master page head show the reference of the js and css file and write the java script for .your datepicker.here i write 2 script named datepicker1 and datepicker2 for two datepicker control.
Now in Default.aspx file i take a table with 2 row and 2 column .
here i took 2 input control id name datepicker1 and datepicker1 and both's type is text. which is directly catch up our javascript. now run the application you will see both on click.
You can also choose much more from http://jqueryui.com/themeroller/ . select which theme you want to use and download it. extract the zip file. after extract you will see the file as like
we will use the css and the js folder data in our application.
Open visual studio 2010 select a new ASP.NET web application, after creating the project add the js and css from the downloaded file.
In your master page head show the reference of the js and css file and write the java script for .your datepicker.here i write 2 script named datepicker1 and datepicker2 for two datepicker control.
<head runat="server">
<title></title>
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />
<link href="~/Styles/jquery-ui-1.8.21.custom.css" rel="stylesheet" type="text/css" />
<script src="Scripts/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>
<%--/* First script for first datepicker name datepicker1 */--%>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$("#datepicker1").datepicker();
});
</script>
<%--/* First script for first datepicker name datepicker2 */--%>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$("#datepicker2").datepicker();
});
</script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
Now in Default.aspx file i take a table with 2 row and 2 column .
<table class="style1" align="center">
<tr>
<td class="style2">
<asp:Label ID="Label1" runat="server" Text="Start Date" Font-Bold="True"></asp:Label>
</td>
<td>
<div class="style3">
<input id="datepicker1" type="text" />
</div>
</td>
</tr>
<tr>
<td class="style2">
<asp:Label ID="Label2" runat="server" Text="End Date" Font-Bold="True"></asp:Label>
</td>
<td>
<div class="style3">
<input id="datepicker2" type="text" />
</div>
</td>
</tr>
</table>
here i took 2 input control id name datepicker1 and datepicker1 and both's type is text. which is directly catch up our javascript. now run the application you will see both on click.
to Get data from the input field in C# you can write :
string startDatepicker = String.Format("{0}", Request.Form["startDate"]);
string endDatepicker = String.Format("{0}", Request.Form["endDate"]);
Enjoy...
This is really great, I should apply it on my site. Thanks for sharing us.
ReplyDelete