your CreatedOn object is a datetime object, not a string object. so take out the ToString() at the end and only have this:
_Vendor.CreatedOn = Convert.ToDateTime(lblCreatedOnValue.Text);
then when it comes to showing the CreatedOn property in a string format, just do:
.CreatedOn.ToString("MM/dd/yyyy");
|