Изменить жестко закодированные даты и параметры времени в форме
У меня есть formview, который обновляет метку из sql... есть ли способ ввода времени сейчас в параметре 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>