G Guest Apr 8, 2006 #1 how to get the day if 1-9 then 01-09 else 11-31 month if 1-9 then 01-09 else 10-12 year 01-99
G Guest Apr 8, 2006 #2 Response.Write (DateTime.Now.ToString("MM")); Response.Write (DateTime.Now.ToString("yy")); Response.Write (DateTime.Now.ToString("dd"));
Response.Write (DateTime.Now.ToString("MM")); Response.Write (DateTime.Now.ToString("yy")); Response.Write (DateTime.Now.ToString("dd"));
T Teemu Keiski Apr 8, 2006 #3 E.g with string formatting. More information about it: Formatting Types http://msdn2.microsoft.com/en-us/library/fbxft59x(VS.80).aspx
E.g with string formatting. More information about it: Formatting Types http://msdn2.microsoft.com/en-us/library/fbxft59x(VS.80).aspx