Date as Monday, August 29, 2011 Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load Dim dd As Date = Date.Today label1.Text = String.Format(“{0:dddd, MMMM d, yyyy}”, dd) End Sub Other formats… ‘ – month/day numbers without/with leading zeroes String.Format(“{0:M/d/yyyy}”, dt); ‘ “8/29/2011” String.Format(“{0:MM/dd/yyyy}”, dt); ‘ “08/29/2011” ‘ – day/month names String.Format(“{0:ddd, MMM d, […]
Home » Posts tagged "ASP.NET" (Page 12)
Archive for the 'ASP.NET' Tag
jQuery Datepicker
Nice and easy to configure and setup jQuery datepicker I use in my ASP.NET applications. All needed files can be downloaded from here. Once you access this page, if you would like to download only “Datepicker” files, deselect all and then select only datepicker and then click download. Full demo and other datepicker templates can […]
jQuery Autocomplete ASP.NET
Simple and easy to setup “autocomplete” code for a search textbox in your ASP.NET application. What do you need: 1. Generic handler (Search_VB.ashx) – Download it from here as a text file and convert it to ashx. 2. Stylesheet (jquery.autocomplete.css) – Download it from here as a text file and convert it to css. 3. […]