Inline ASP.Net tags… sorting them all out 2 april 2008 0 There are all sorts of different inline tags, and I haven’t found a place that explains them all in one place, so here is the quick and dirty… Naspinski – Inline ASP.Net tags… sorting them all out (<%$, <%=, <%,…
Silverlight 2 Developer Poster 18 maart 2008 0 At Mix08, the Silverlight 2 Poster was a hot item given out in many of the session. If you didn’t get yours or if you couldn’t make it, you can feel free to download and print your own! Silverlight 2…
ASP.NET Runtime Cheat Sheet: HttpRequest, HttpRuntime, AppDomain and friends 20 februari 2008 0 This article has cheat sheets for retrieving various bits of ASP.NET runtime information. For each bit of info, there is: * A code snippet for retrieving it in a page, with a link to MSDN * Description, sometimes explanation *…
Top 10 Best Practices for Production ASP.NET Applications 14 februari 2008 0 In no particular order, here are the top ten things I’ve learned to pay attention to when dealing with production ASP.NET applications. Hopefully they will help you save you some time and headaches. As always, your thoughts and additions are…
Troubleshooting Expired ASP.NET Session State and Your Options 1 februari 2008 0 I have a love/hate relationship with the ASP.NET Session. It’s such a convenient place to put things, but when you start putting applications into production there are a number of less-than-obvious edge cases that can come up and bite you.…
Log4net: simple way to use in your Asp.net application 4 januari 2008 0 Log the actions of your applications is very important especially when you develop new features or develop very difficult logical business.But it is also important when users use your applications to understand the critical issues or problems.To implement quickly the…
Creating an Outlook Navigation Bar using the ListView and Accordion Controls 17 december 2007 0 Matt Berseth explains how to create an Outlook like navigation pane in ASP.Net with a combination of an Accordion Ajax Control and the ListView control.Nice example of how the new Ajax controls in the ASP.NET Ajax Control Toolkit can extend…
Rhino Mocks Quick Reference 13 december 2007 0 Last week I gave a presentation on mock objects for Software Professionals of Alaska. Once the PowerPointy hand-waving was out of the way, I illustrated the concepts with code examples using Rhino Mocks. I thought I was well-versed in Rhino…
Copy project files to another location after build 4 december 2007 0 For a (web-)project I am working on, I needed to copy the content of 1 website to a sub-folder of another website after the project was built. This enables the 2 projects being separately developed and deployed, but also allows…
How To Create A Custom Control 21 november 2007 0 Create a new ASP.NET Web Application, Windows Forms Control Library or Class Library project Create a new class and inherit from System.Web.UI.WebControls.WebControl or from a specific control (like TextBox) Override the Render method and call writer.write() to write raw HTML…
.NET Design Guidelines & Coding Conventions 21 november 2007 0 .NET Framework Developer’s Guide:Design Guidelines for Developing Class Libraries .NET Framework General Reference:Design Guidelines for Class Library Developers
C# MYSQLWrapper Class and PHPWrapper-Script 8 november 2007 0 The MYSQLWrapper Class is a small and simple to use solution for accessing serverside MySQL Databases at a standard webspace that supports php and mysql.I thought it would be useful because many of you have got those cheep php/mysql supported…