Using WordPress/MySql as a CMS for a .NET Site
// January 30th, 2010 // No Comments » // Uncategorized
I’ve got a couple of projects I’m working on that are written in C#/.NET and each have a lot of static content. “Static” meaning about us, product description, and FAQ-ish content. Â Stupidly, I’ve got these pages as hard-coded HTML for one site and database driven through a primitive “CMS” for the other (I use quotes because I merely put this database-driven content into a TinyMCE enabled field on a back-end site and let users have at formatting).
Obviously the hard-coded solution isn’t the way to go because every change requires a new build onto the server – which is overkill to say the least. Â The quick-and-dirty WYSIWYG/database solution is only marginally better in my opinion (no saved versions and all the text is free form, so associating other fields like data posted, modified, or author requires incremental work).
