How to create a zip archive and download it in ASP.NET 5 april 2012 0 In a previous post How to download multiple files in ASP.NET, I explained how to generate multiple documents and offer them as separate downloads in ASP.NET. One of the options I had when looking for a solution to offer multiple…
How to download multiple files in ASP.NET 4 april 2012 1 The project I’m currently assigned to, already has an option to generate reports (pdf) which are just streams the binary output of the report generator to the response output stream. Something like this: Dim binReader As New System.IO.BinaryReader(report.ExportToStream()) With Response…
Aspect Oriented Programming (AOP) with PostSharp 27 mei 2011 0 What is AOP (Aspect Oriented Programming)? Aspect oriented programming breaks down programming logic in separate concerns. It separates and groups blocks of code that perform a specific operation and that can be applied to or re-used by different pieces of…
Introducing NuGet 23 mei 2011 0 What is NuGet? From the NuGet website: NuGet is a Visual Studio extension that makes it easy to install and update open source libraries and tools in Visual Studio. Installing NuGet Method 1: NuGet comes with ASP.Net MVC3 The easiest…
Prevent caching of stylesheet and javascript files 10 augustus 2010 0 First something about caching The numerous caching options you have in ASP.NET (MVC) are mainly focused on data and page output caching. But caching also occurs at the webserver, network and browser level. These you can’t always control from within…
Deploying ASP.NET MVC On IIS6 12 mei 2009 0 you’ve been HAACKED – ASP.NET MVC on IIS 6 Walkthrough Steve Sanderson’s blog – Deploying ASP.NET MVC to IIS 6 Bia Securities – How to enable pretty urls with Asp.Net MVC and IIS6 Omar AL Zabir blog on ASP.NET Ajax…
Checklist for high quality websites part 2 27 februari 2009 0 In the first part of the checklist, we looked at creating high quality websites from a client perspective and the tools that helps us do that. In this part we look at the (free) tools that will help us build…
ASP.NET Performance Tips 5 februari 2009 0 In the post below I am going to run down a short-list of some of the less-popular performance tips and the reasoning behind them. There are loads of blog postings and articles on asp.net performance enhancements, and I urge you…
A Guide to Learning ASP.NET MVC Release Candidate 1 28 januari 2009 0 Now that the ASP.NET MVC Release Candidate is available for download, how do you learn how to start using it to build applications? Here’s a guide to resources for learning about ASP.NET MVC Release Candidate 1. Stephen Walter on ASP.NET…
Design for Developers 23 januari 2009 0 A few years ago I had the opportunity to sit down with a designer possessed of a rare talent. We were both part of the same team and he was creating some UI elements that I was to wire up.…
Ajax and forms authentication 15 januari 2009 0 Forms authentication is nice way to protect your asp.net web pages from unauthorized views. The good thing is that it shields all request for pages in your site and will redirect the request to a login page. You can set…
Performance Optimization of ASP.NET Applications on Client-side 15 januari 2009 0 With the advent of new web applications with rich user interface, there is a lot of processing on the client side. Most of this processing is done using scripting languages like JavaScript, etc. Lot of new frameworks are in the…