In my previous post I showed you how to return XML from the SQL Server Database. To further this topic, you can also format your XML to use Xml elements. This time, we're going to take a list of …
Blog
Generate XML in SQL
You can easily generate Xml from a DataTable by using the .WriteXml() method. But you can also bypass this and retrieve the Xml directly SQL Server 2005 by running the following command: …
The hidden Trace page, trace.axd
Most developers dont know about the virtual trace output page available in ASP.NET. This page allows you to see the Trace Output provided by ASP.NET. You can view many statistics about the pages that …
Simian Upgrade
For those of you who use Simian, please be aware, they upgraded the product and the old "-recurse" option no longer works. Read below on how to fix it. The Issue I downloaded it last night to …
Force HTTPS on all requests, HttpModule
Sometimes we have websites that are strictly HTTPS. No files whatsoever are served up through HTTP. We want our users to only access the HTTPS portion of our website but we dont want them to …
Continue Reading about Force HTTPS on all requests, HttpModule →
Prototype/Proof of Concept code is not production code!
One thing that should be burned into the heads of many developers is that Prototype/Proof of Concept (PoC) code is NOT production code. Proof of Concept code is not production code.Prototype code is, …
Continue Reading about Prototype/Proof of Concept code is not production code! →