Hi,
SelectedDate is of DateTime type. A DateTime value as the name implied, always contains both date and time value. The difference is which part you use/care. Since the value is always there, when you call ToString, it gives you both by default.
To get the date/time value in different format, you would pass ToString a format string. For example, ToString("d") would only give you date part ("9/4/2008").
Many standard and custom format strings are supported. Note they are implemented by .NET frameworks, not by us. You can find the details about format strings from the following MS documentation:
http://msdn.microsoft.com/en-us/library/az4se3k1.aspxhttp://msdn.microsoft.com/en-us/library/8kb3ddd4.aspxHope this helps.
Thanks