C#.NET GDI
yyyyMMdd 간단한 날짜형식변경
스티커
2009. 12. 4. 01:10
protected void Page_Load(object sender, EventArgs e)
{ DateTime myDate;
myDate = System.DateTime.ParseExact("20091101","yyyyMMdd", System.Globalization.CultureInfo.InvariantCulture);
Response.Write(myDate.ToShortDateString()); //2009-11-01
}