Search Results

8
votes

Is there any CMS better than WordPress or should I roll my own?

Umbraco was suggested in one of the answers. We've had experience with it and many other CMS systems and I can safley recommend you to go that path, it's both easy to learn and simple to use while …
0
votes

RegisterClientScriptBlock within AJAX method call

In general, when loading external javascript after appending an element innerHTML with a block containing such script, one needs to evaluate (eval) the script in order for it to work properly and r …
0
votes

asp.net, stateserver, NLB, session lost.

A few points to take into consideration: What's the load on your website? State Server has the tendency to crash when facing a large number of concurrent hits. We're only using it in …
3
votes

IIS 6.0 wildcard mapping benchmarks?

I think there are several additional things to check: Since we're using the .Net ISAPI filter, we might be using threads used to run application for serving static assets. I would run …
1
vote

Community Server the new version do you recommend it? can you integrate new modules to it?

Based on the fact we've been working with CS ever since version 1.0 (and even before as ASP.Net Forums) I can tell you this - CS 2007 and 2008 introduces a great out-of-the-box community solution a …
0
votes

Good Book on Scaling Asp.Net applications

The best book I've ever read regarding scaling web application is not a Asp.Net one, but is a must for all you web architects out there - …
0
votes

Is there an easy way to scale a ‘views’ or ‘download’ counter in a DB row?

I'd consider doing one of the following: Use a buffer within the application and batch write a set of views every time buffers gets full Using a local logging file and aggreg …
2
votes

What are the key factors that ensure successful ASP.NET application scalability?

These are our internal ASP.Net Do's and Don't Do's for massively visited web applications: General Guidelines Don't use Sessions - SessionState=Off Disable ViewStat …