httpRuntime and File Upload Limits
Still reeling from a flood of New Year work. Let me offer something brief. Rob Spitzer did a nice Win2K3 and IIS 6 presentation for WeProgram.Net last night. We were discussing some Win2K to Win2K3 migration issues, and besides this Response Buffer issue I discussed here, I mentioned some default settings regarding file upload size. Donny Mack wrote about using the httpRuntime element in web.config here, but in a nutshell let me share that web.config supports an <httpRuntime> element under the system.web section -- specifically something like this
<httpRuntime maxRequestLength="10000" />
will establish a max file upload size of 10,000 Kilobytes. You can set this more broadly in your machine.config, too.
Oh, yeah, Admin and Developer alike might find SAM's Windows Server 2003 Delta guide useful. Amazon it here. If my word isn't good enough, both Rob Spitzer (local Admin extraordinaire) and Darrell Norton (local Developer extraordinaire) highly recommend it too!
Happy .Netting