Category Archives: .net

Amazon, XML, XPath and C# 2.0

I am putting this out there so that, hopefully, no one else will struggle like I just did.
I am trying to use XPath to parse the results from one of the Amazon Web Services. I was not expecting this to be difficult, and it really is not, if you know how to use XPathNavigator. [...]

ClickOnce Deployment

I gave a presentation last night to the Omaha .NET User Group. I think it was received well, and quite a few good questions were asked. One in particular stumped me.
How can I use command line parameters with a ClickOnce deployed application?
Well today I am happy to say that I have found the [...]

open URL in an external browser

This is how I am currently opening a URL in an external browser. If you know of a better way to this, please let me know.

System.Diagnostics.Process.Start(“http://legobuff.com”);