我有一个从sql更新标签的formview ...现在有一种方法可以将select参数的时间输入到日期和时间而不是硬编码的日期和时间吗?
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString='<%$ ConnectionStrings:productionConnectionString %>' SelectCommand="uspGetPackStatisticsPerShiftTotal" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter DefaultValue="2016-06-06 06:00" Name="ShiftStart" Type="DateTime"></asp:Parameter>
<asp:Parameter DefaultValue="2016-06-06 13:59:59" Name="ShiftEnd" Type="DateTime"></asp:Parameter>
<asp:Parameter DefaultValue="214" Name="SeriesMasterId" Type="Int32"></asp:Parameter>
</SelectParameters>
</asp:SqlDataSource>
<asp:formview id="FormView" runat="server" datasourceid="SqlDataSource1">
<itemtemplate>
<asp:Label ID="labeltotal" runat="server" Text='<%# Eval("TotalPacked") %>' Width="100%" Height="100%" Font-Size="250px" style="position: static; text-align: center; padding-top: 280px; padding-right: 85px; color: #ff0000 "></asp:Label>
</itemtemplate>
</asp:formview>