Format DateTime variable (VB) : DateTime « Development « ASP.NET Tutorial

ASP.NET Tutorial
1. ASP.Net Instroduction
2. Language Basics
3. ASP.net Controls
4. HTML Controls
5. Page Lifecycle
6. Response
7. Collections
8. Validation
9. Development
10. File Directory
11. Sessions
12. Cookie
13. Cache
14. Custom Controls
15. Profile
16. Configuration
17. LINQ
18. ADO.net Database
19. Data Binding
20. Ajax
21. Authentication Authorization
22. I18N
23. Mobile
24. WebPart
25. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.NET Tutorial » Development » DateTime 
9. 11. 8. Format DateTime variable (VB)
<%@ Page %>
<script Language="vb" runat="server">
Private Sub Page_Load(sender As Object, e As System.EventArgs)

  Response.Write("Default: " & System.DateTime.Now & "<br>")
  Response.Write("Local Time: " & System.DateTime.Now.ToLocalTime() "<br>")
  Response.Write("Long Date: " & System.DateTime.Now.ToLongDateString() "<br>")
  Response.Write("Long Time: " & System.DateTime.Now.ToLongTimeString() "<br>")
  Response.Write("Short Date: " & System.DateTime.Now.ToShortDateString() "<br>")
  Response.Write("Short Time: " & System.DateTime.Now.ToShortTimeString() "<br>")
  Response.Write("ToString Default: " & System.DateTime.Now.ToString() "<br>")
  Response.Write("Universal Time: " & System.DateTime.Now.ToUniversalTime() "<br>"' returns a datetime, which can still be formatted
  
  ' Using Format Strings
  Response.Write("d - Short Date: " & System.DateTime.Now.ToString("d""<br>")
  Response.Write("D - Long Date: " & System.DateTime.Now.ToString("D""<br>")
  Response.Write("t - Short Time: " & System.DateTime.Now.ToString("t""<br>")
  Response.Write("T - Long Time: " & System.DateTime.Now.ToString("T""<br>")
  Response.Write("f - Full date/time (short time): " & System.DateTime.Now.ToString("f""<br>")
  Response.Write("F - Full date/time (long time): " & System.DateTime.Now.ToString("F""<br>")
  Response.Write("g - General: " & System.DateTime.Now.ToString("g""<br>")
  Response.Write("G - General: " & System.DateTime.Now.ToString("G""<br>")
  Response.Write("M/m - Month day: " & System.DateTime.Now.ToString("M""<br>")
  Response.Write("u - Universal Sortable: " & System.DateTime.Now.ToString("u""<br>")
  Response.Write("Y/y - Year month: " & System.DateTime.Now.ToString("y""<br>")

  ' Custom Format Strings
  Response.Write("d, day of month: " & System.DateTime.Now.ToString(" d""<br>"' can't use just "d"
  Response.Write("dd, zero-padded day of month: " & System.DateTime.Now.ToString("dd""<br>")
  Response.Write("ddd, abbreviated day of week: " & System.DateTime.Now.ToString("ddd""<br>")
  Response.Write("dddd, full day of week: " & System.DateTime.Now.ToString("dddd""<br>")

  Response.Write("h, hour: " & System.DateTime.Now.ToString(" h""<br>"' can't use just "h"
  Response.Write("hh, hour, zero padded " & System.DateTime.Now.ToString("hh""<br>")
  Response.Write("H, hour, 24-hr " & System.DateTime.Now.ToString(" H""<br>"' can't use just "H"
  Response.Write("H, hour, 24-hr, zero padded " & System.DateTime.Now.ToString("HH""<br>")
  
  Response.Write("m, minute: " & System.DateTime.Now.ToString(" m""<br>"' can't use just "m"
  Response.Write("M, month: " & System.DateTime.Now.ToString(" M""<br>"' can't use just "M"
  Response.Write("MM, month, zero padded: " & System.DateTime.Now.ToString("MM""<br>"
  Response.Write("MMM, month abbreviated: " & System.DateTime.Now.ToString("MMM""<br>"
  Response.Write("MMMM, month full name: " & System.DateTime.Now.ToString("MMMM""<br>"
  
  Response.Write("y, year (omits century): " & System.DateTime.Now.ToString(" y""<br>"' can't use just "y"
  Response.Write("yy, 2-digit year, zero padded: " & System.DateTime.Now.ToString("yy""<br>"
  Response.Write("yyyy, 4-digit year, zero padded: " & System.DateTime.Now.ToString("yyyy""<br>"
End Sub 'Page_Load
</script>
9. 11. DateTime
9. 11. 1. Today.Ticks
9. 11. 2. Assign DateTime value to asp:Label (C#)
9. 11. 3. Set the asp:Label in code behind based on current time (VB.net)
9. 11. 4. DateTime.Now.ToShortDateString()
9. 11. 5. Calculates the number of days until a given date
9. 11. 6. DateTime and TimeSpan
9. 11. 7. Format DateTime
9. 11. 8. Format DateTime variable (VB)
9. 11. 9. Format DateTime variable (C#)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.