Tuesday, July 11, 2006

ASP.NET Web.Config from IIS

No comments:
Just a little tip for those that dont like hacking the XML in web.config on ASP.NET 2.0 projects manually theres a handy little tool built into IIS: If you right click on the website in IIS then click properties then go to the ASP.NET tab theres a button at the bottom called Edit Configuration, if you go in there theres a nice little interface for the web.config file which...
Read More

Tuesday, July 04, 2006

RSS XML Stylesheet Example

No comments:
Some time ago I was working for a client who required their CMS system to output particular items as RSS feeds. The CMS output XML and used XSLT to tranform to HTML. This provided a very handy mechanism indeed for conversion to RSS.   My final solution used a stylesheet to simply take the XML from the CMS and convert it to an RSS 2.0 format feed rather than HTML! Below...
Read More

XSLT Replace Template

No comments:
I was working on a site today that required me to split a string in the form of a=1;b=2;c=3 in xsl. Now xsl does provide a translate() function but it doesn't traverse the whole string doing a normal replacement as you might expect. Instead a trawled the internet and found the following little template which nicely recurses through and does the replacement. I thought I'd post...
Read More

Monday, July 03, 2006

Email Blog Entry

1 comment:
Again Im new to all this blogging lark and now Ive had it for a while I thought I'd checkout some of the extended capabilities - like emailing in this entry! See you all again soon! Oh I've also allowed comments from everyone (not just registered users) so lets see if we can get some kinda flame ware on the go eh? ;oP ...
Read More

Enmus, Enum Sets, parsing n' stuff

No comments:
Recently I have started keeping track of some industry leading developers and what they're up to via their weblogs. One very active blogger is Rick Strahl who really knows his stuff - anyway todya I noticed he'd posted a very good guide to using Enum's - far far superior to my one liner about recursing through them so I thought Id post a link here and share!http://west-wind.com/w...
Read More