我的网页中有一个 Calentder Ajax 扩展。和一个显示所选日期的文本框。
<asp:TextBox ID="txtDate" runat="server" Width="90px""></asp:TextBox>
<asp:ImageButton ID="imgCallDate" runat="server" ImageUrl="pic/Calendar.png"
ImageAlign="Baseline" Height="16px" />
<asp:CalendarExtender ID="CalToDate2" runat="server" Enabled="True" TargetControlID="txtDate"
Format="yyyy/MM/dd" PopupButtonID="imgCallDate" StartDate="2013/09/01"
OnClientDateSelectionChanged="checkDate()"
>
</asp:CalendarExtender>
....
<asp:Button ID="Find" runat="server" Text="OK" onclick="Find_Click" />
和
<script>
function checkDate(sender, args) {
if (sender._selectedDate.getDay=="")
{
alert("You have to choose one date");
}}
</script>
当 客户单击按钮而不在日历中选择日期时显示警报的OnClientDateSelectionChanged
呼叫功能。但似乎功能是错误的。即使我没有在日历中选择日期,也不会显示任何警报。checkDate()
Find
checkDate()
我是 ASP.Net 的新手?我上面的代码有什么错误吗???
我只是认为问题出在这一行: if (sender._selectedDate.getDay=="")