Various methods of setting Date values to a string

This code-tip is copy and paste to set various methods of date time values to a string, copy and paste examples are useful.

Contributed by
Rating: 4 stars4 stars4 stars4 stars4 stars / 34
January 01, 2003
Rate this Article:
MEH MEH++


SEARCH ASP FREE
TOOLS YOU CAN USE

advertisement

<script language="vb" runat="server">
Sub Page_Load(Sender as Object, E as EventArgs)
dim strshortDate as String = System.DateTime.Now.ToShortDateString() 
shortDate.Text = "Short Date: " & strshortDate 

dim strLongDate as String = System.DateTime.Now.ToLongDateString()
longDate.Text = "Long Date: " & strLongDate 

dim strshortTime as String = System.DateTime.Now.toShortTimeString()
shortTime.Text = "Short Time: " & strshortTime 

dim strlongtime as String = System.DateTime.Now.ToLongtimeString()
longTime.Text = "Long Time: " & strlongtime

dim stradddays as String = cstr(System.DateTime.Today.AddDays(+15))
addDays.Text = "Add 15 days: " & stradddays 

dim strSubTractDays as String = cstr(System.DateTime.Today.AddDays(-15))
subtractDays.Text = "Subtract 15 Days: " & strSubtractDays
End Sub
</script>



Here is the demo

Short Date: 7/9/2003

Long Date: Wednesday, July 09, 2003

Short Time: 1:15 AM

Long Time: 1:15:41 AM

Add 15 days: 7/24/2003

Subtract 15 Days: 6/24/2003

blog comments powered by Disqus
ASP CODE ARTICLES

- ASP Forms
- ASP: The Beginning
- Getting Remote Files With ASP Continued
- Inbox and Outbox Manipulation in ASP
- Relational DropDownList Using VB.NET
- Ad Tracking URL Hits
- Use ViewState to display one record per page...
- Send Email using ASP.NET formatted in HTML
- ASP File Explorer
- ASP/XML Interview questions by Srivatsan Sri...
- Pressing RETURN won't submit the form
- This shows how you get the TEXT of a combo r...
- Group Data by Adrian Forbes
- Multiple checkbox select sample
- Multiple checkbox select with all values sam...

ASP Web Hosting ASP.Net Web Hosting Windows Web Hosting
 
 
 

ASP Free Forums 
 RSS  Tutorials RSS
 RSS  Forums RSS
 RSS  All Feeds
Site Map 
Request Media Kit
Write For Us Get Paid 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Privacy Policy 
Support 


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 3 - Follow our Sitemap
Most Popular Topics
All ASP.Net Tutorials