quinnipiac0807
Programmer
I'm pulling a date out of a database and putting it in a label on my .aspx page. My question is, what is the easiest way to format the date to this format. mm/dd/yyyy. A shortdatetime format. I've found many different ways to do it but I wanted to know what the easiest is. This is how I pull it out of the database and post it now, using my class.
txtStartDate.Text = Convert.ToString(project.ProjStart);
Just looking for suggestions....Thanks
txtStartDate.Text = Convert.ToString(project.ProjStart);
Just looking for suggestions....Thanks