我的asp.net 表单上有一个jQuery 日期选择器。一切似乎都工作正常,除了当我提交表单时,选择的日期从文本框中丢失,.net 代码给我一个错误,因为日期丢失。
有谁知道为什么会发生这种情况?
当我从文本框中删除 readonly=true 时它开始工作,但我需要它是只读的,以防止用户错误地输入日期。
根据要求的一些代码/脚本:
HTML:
<form id="form1" runat="server">
<asp:TextBox id="txtDate" Runat="server" readonly="true" />
<asp:Button ID="btnSendRequest" text="Send Request" Runat="server" OnClick="btnSendRequest_Click" />
</form>
jQuery:
$("#txtDate").datepicker({
dateFormat: "dd/mm/yy"
});
。网:
Sub btnSendRequest_Click(ByVal Sender As Object, ByVal E As EventArgs)
objSQLCommand = New SqlCommand("insert query here", objConnection)
'parameters here
Try
objSQLCommand.Connection.Open()
objSQLCommand.ExecuteNonQuery()
objSQLCommand.Connection.Close()
Catch Ex As Exception
' some error here
End Try
End Sub