How to change the Month into string as Jan, Feb, Mar, ..., but not 1, 2, 3...?
Hello!
How to change the Month into string as Jan, Feb, Mar, ..., but not 1, 2, 3...? Please give me reply asap. Thanks!
public string TDate()
{
string DateInString="";
int Day=DateTime.Now.Day;
int Month=DateTime.Now.Month;
int Year=DateTime.Now.Year;
DateInString=Day.ToString();
DateInString+="-" + Month.ToString();
DateInString+="-" + Year.ToString();
return DateInString;
}
tsuman_inPosted Oct 29, 2003, 9:36 PM
jcity444Posted Oct 29, 2003, 8:56 PM
softairhkPosted Oct 29, 2003, 8:49 PM
thed0ct0rPosted Oct 29, 2003, 10:19 AM
softairhkPosted Oct 29, 2003, 1:25 AM