Hello:
I'm looking for some resources on asp.net and using xPath to filter xml results.
I'm trying to figure out a way of displaying a set of xml nodes that have a dateTime value that falls into a certain range.
Here's a snippet of the xml file
07/20/2009 11:00:00 Title Goes Here Rating Goes Here All work and no play makes Jack a dull boy...
The doesn't come to me in a standardized format like yyyy-mm-ddThh:mm:ss which appears to be the biggest hurdle in parsing out the correct info.
If anyone can point me in the right direction it would be greatly appreciated.
Regards.
funny you have this issue, have a third party working in .net that is complaining that we're sending dates to them in that format (standardized UTC)
depending on language:http://msdn.microsoft.com/en-us/library/ms973825.aspx (ie, pass the string into a date.parse(string).ToUniversalTime() sort of deal)
hope that is what you're looking for.
Thanks for the link. Gave me the idea to change the date to a xsl friendly format.