improve.dk
Just another mindless drone looking for the perfect stack
posts - 220, comments - 475

December 2009 Blog Posts


TechTalk on Scalability & Availability using NLB and IIS ARR

Written on Wednesday, December 16, 2009 by Mark S. Rasmussen in Development: .NET, Sysadmin: Availability, Sysadmin: Scalability, Presenting

As promised during my TechTalk today at Microsoft Denmark, here are the links to all slides and demo code. Unfortunately you'll not be able to download the VPC's as those total around 30GB. Download slides & code I sincerely hope you enjoyed the presentation as much as I did. Either way, I'd appreciate your comments on SpeakerRate - Thanks :)

No comments | Write first comment
 

Fixing Flash bugs and intercepting IIS Application Request Routing cookies

Written on Wednesday, December 09, 2009 by Mark S. Rasmussen in Development: .NET, Sysadmin: IIS, Sysadmin: Scalability, Development: AS/Flex/Flash

What does Flash, upload, cookies, IIS load balancing and cookies have to do with each others? More than I'd like :( When users need to upload files I often use the Flash based SWFUpload component. It allows for multiple file selection and progress display during upload. Handling the uploaded files on the .NET side is rather easy: for (int i = 0; i < Request.Files.Count; i++) { HttpPostedFile hpf = Request.Files[i]; // ... Save / process the HttpPostedFile } One of the arguments for using Flash for web designs is that...

No comments | Write first comment