M
mp
I am using :
SystemDate= System.DateTime.Now.Year.ToString()
+System.DateTime.Now.Month.ToString()+System.DateTime.Now.Day.ToString();
strbRetVal.AppendFormat("{0}{1}",SystemDate,m_chFieldDelimiter);
but this gives me : 200517
I want the date to look like: 20050107
How can I do this?
Thanks
SystemDate= System.DateTime.Now.Year.ToString()
+System.DateTime.Now.Month.ToString()+System.DateTime.Now.Day.ToString();
strbRetVal.AppendFormat("{0}{1}",SystemDate,m_chFieldDelimiter);
but this gives me : 200517
I want the date to look like: 20050107
How can I do this?
Thanks