在使用DataFormatString格式化日期和時間時,你可以使用以下一些常見的格式化選項:
你可以根據自己的需求選擇合適的格式化選項,然后在代碼中使用DataFormatString屬性將日期和時間格式化輸出到頁面上。例如,在GridView中使用DataFormatString格式化日期和時間:
<asp:BoundField DataField="Date" HeaderText="Date" DataFormatString="{0:yyyy-MM-dd}" />
<asp:BoundField DataField="Time" HeaderText="Time" DataFormatString="{0:hh:mm:ss tt}" />
以上示例中,Date列的日期會以"yyyy-MM-dd"格式顯示,而Time列的時間會以"hh:mm:ss tt"格式顯示。根據你的實際需求,可以靈活選擇適合的日期和時間格式化選項。