Browse by Tags

18 januari 2007
Reflector fun with System.Web assembly
Earlier this week I gave an Advanced ASP.NET 2.0 for Class-A . The course takes a deep dive into the various services of ASP.NET 2.0. During the preparation for this course I took Reflector for a spin and checked the internals of System.Web.dll. I can really recommend doing so, if you want to find out... Read More...
15 december 2006
WebDev.WebServer for easy website hosting
Visual Studio 2005 Websites and Web Application projects use the ASP.NET Development Server as a light-weight web server to host the websites. Pretty easy, but sometimes you need to host one or more websites and don't feel like starting a full-blown VS2005 instance just for that. And adding a Web Share... Read More...
08 oktober 2006
Slides from Software Developer Network events
This was a long time coming. I never posted the slides of the duo-presentation my colleague Frits Ankersmit and I gave at the Software Developer Conference 2006. Well, here they are. The talk was about Tips and tricks in Visual Studio 2005. Check out the slides for some nice things you might not know... Read More...
14 juni 2006
Localizing a sitemap
ASP.NET 2.0 has a very nice mechanism to localize resources: Explicitly using expressions such as <asp:Label ID="someLabel" Text='<%$ Resources: Common, HelloText %>' ... /> Implictly for all properties marked with the LocalizableAttribute <asp:Label ID="someLabel" meta:ResourceKey="someLabel... Read More...
10 januari 2006
Page level event handlers with VS2005
Until recently I could not find a way to add a page level event handler for a ASP.NET 2.0 web page. I mean, you can type it if you know what the name of the event and the signature of the delegate/event is. But for people without a photographic memory it is convenient to click your way to an event handler... Read More...