Add Custom VS Snippets
This note refers to Visual Studio snippets and shows how you can easily add your own. Very useful when having to create many classes with lots of properties such snippets save a lot of time. They are usually to be found in the Visual Studio folder under My Documents (i.e. for VS 2008 : C:\Documents [...]
Full StoryGenerate Objects from Xml Files
Recently needed some quick method to use objects generated from an existing xml file without bothering to create an xml schema for it. After a few attempts and searching for explanations why a simple task like this wouldn´t work, finally put the steps together:
Full StoryConverting rootless XmlReader to XmlDocument in .NET
MS SQL has the ability to retrieve data as XML by using the “FOR XML [RAW | AUTO [ELEMENTS] | EXPLICIT]” parameters, which is very useful especially when used in a web service that communicates with a Flash / Flex client as the results don’t have to be converted, but just output to the client. [...]
Full StoryViewing XSL transformation result in IE
If you’ve ever used XML+XSLT in your browser, you know that using View Source presents you with the original XML file, not the HTML that you might have expected; this makes debugging XSL transformations somewhat difficult.
Full Story