在日历上显示日期范围

时间:2019-09-17 16:13:06

标签: c# asp.net

我需要从日历中选择一个从今天起15天以内的日期,并将其保存在我的数据库中。

我尝试设置最大值和最小值,但无法正常工作。您知道错误是什么还是是否有另一种方法来执行此操作。 谢谢!

<asp:TextBox ID="txtFecha" type="date" runat="server" min="01/09/2019" max="19/09/2019" style="width:230px"OnTextChanged="txtFecha_TextChanged">Seleccione fecha</asp:TextBox>

1 个答案:

答案 0 :(得分:0)

这是使用jquery ui datepicker的示例。

  

使用minDate和maxDate选项限制可选日期的范围。将开始日期和结束日期设置为实际日期(新的Date(2009,1-1,26)),设置为今天(-20)的数字偏移量,或设置为一串周期和单位('+ 1M + 10D') 。最后,使用“ D”代表几天,“ W”代表星期,“ M”代表几个月,或“ Y”代表几年。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Datepicker - Restrict date range</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker" ).datepicker({ minDate: new Date(2019, 08, 01), maxDate: new Date(2019, 08, 19)});
  } );
  </script>
</head>
<body>
 
<p>Date: <input type="text" id="datepicker"></p>
 
 
</body>
</html>