I'm a developer for a small company with a fairly meager marketing budget, and as such our main website is our most important marketing tool. Currently the site is built in .NET and is composed of a large collection of aspx files. It's messy, and what we'd love to do is switch over to a CMS that allows us to edit the content of existing pages without hassle, add new pages quickly using templates, and modify the layout of the site as a whole with minimal effort.
One issue complicating the matter is that we do a very large amount of multivariate testing, mostly on a few main pages. We randomize headers, buttons, images, text, and anything else we can think of. Sometimes these testable elements are nested within other testable elements. In addition to the ability to do this sort of randomized testing, we need the ability to identify any given version of a page that contains random elements, track its performance, and ignore randomization in favor of a specified element when supplied. One way to do this is with a dynamically generated string based on the chosen random elements, which can be stored/sent to Google Anaytics/etc., but we are open to other options if there's a solution that supports this.
The language is not important. We're currently using ASP.NET, but we're open to PHP, Python, or anything else, as long as it works. Does anyone know of a CMS that would be ideal for us? If not a CMS, is there a framework people typically recommend for this kind of thing? The few of us on the team know very little about third-party solutions, and could really use some advice. Thanks.