1
下面給出的是我試圖從texbox.it傳遞所有其他值,但它傳遞了空值作爲{1/1/0001 12:00:00 AM }。我想讓它傳遞null值。請幫忙?無法從asp傳遞空值:ObjectDataSource
<asp:ObjectDataSource ID="Schedules" runat="server" SelectMethod="GetScheduleByDate"
TypeName="WebUI.Code" OldValuesParameterFormatString="original_{0}">
<SelectParameters>
<asp:ControlParameter ConvertEmptyStringToNull="true" ControlID="TextBoxSchedules" Name="ScheduleDate" PropertyName="Text" Type="DateTime"/>
</SelectParameters>
</asp:ObjectDataSource>
[DATETIME](https://msdn.microsoft.com/en-us/library /system.datetime(v=vs.110).aspx)是一個結構體,在這個意義上不可空,就像一個int或一個long。也許'可空''會起作用。 –
rene
另一種選擇是'DateTime? myDatetime' –
謝謝!我知道這個概念,但我一直沒有做到一切正確。現在我再次嘗試,它的工作原理!多謝你們! – rampantNinja