I\'m using .NET 3.5 and I have a date that comes in as string in the following format:
Tue Jan 20 20:47:43 GMT 2009
First questi
Try this:
DateTime.TryParse(Tue Jan 20 20:47:43 GMT 2009", out objDt);
You need to give an output value. Use If and if it returns true then its a valid date.
HTH