<ns0:Purge xmlns:ns0="http://Development.Purge.PurgeSchema" DaysPrior =
"101"/>
I want to get the DaysPrior value out of it. Here is one of my many attempts
at getting the value without any luck. Can you please help!
System.Diagnostics.Debug.WriteLine ( xpath ( PurgeMessage, "/@DaysPrior" ) );
Thanks!
Try this:
System.Diagnostics.Debug.WriteLine ( xpath ( PurgeMessage, "string
(/*/@DaysPrior)" ) );
Regards,
Alan
"Alan Smith" <Alan...@discussions.microsoft.com> wrote in message
news:0207E9DB-1F64-4141...@microsoft.com...