Con ASP.NET è possibile formattare in maniera rapida date ed orari.
Ecco un esempio:
<SCRIPT Language="VB" RUNAT="server"> Sub Page_Load(sender as Object, e as EventArgs) Dim dtCurrent as DateTime = Now() txtCurrent.text = dtCurrent.toLongDateString() End Sub </SCRIPT> <asp:label id="txtCurrent" RUNAT="server" />
Sono disponibili inoltre le funzioni:
- toShortDateString(): data nel formato breve
- toShortTimeString(): orario nel formato breve
- toLongTimeString(): orario nel formato esteso
Commenti
Per inserire un commento, devi avere un account.
Fai il login e torna a questa pagina, oppure registrati alla nostra community.
Approfondimenti
Nessuna risorsa collegata