Browse by Tags

How to set ASP.NET controls adapter by code ?
11 December 07 01:05 AM | Laurent Duveau
In a recently job I wanted to package as much as possible common items of the web layer (WebControls, BasePage, HttpHandlers, Js, Css, etc...) in a class library project, so I can share the dll across several ASP.NET apps. As I use the CSS Friendly Control...
Filed under: ,
Learning ASP.NET (links to resources)
29 November 07 07:40 PM | Laurent Duveau
People often ask me where to find resources to learn ASP.NET I must say that I learnt almost EVERYTHING from the QuickStart Tutorials : http://quickstarts.asp.net/QuickStartv20/aspnet/Default.aspx These tutorials are very good and shows every features...
Expression Web and Custom Controls
18 November 07 12:41 PM | Laurent Duveau
In case you wonder how Expression Web deals with custom ASP.NET controls, there are 2 things to notice : Having the control assembly into the \bin directory will not give you any design time rendering in Expression Web. Expression Web do not support custom...
JavaScript onLoad event clashing
16 November 07 07:04 PM | Laurent Duveau
This week I had to debug some asp.net pages that has a weird behavior. They work well but each time a Js alert() raise, the hover menu are no more available (it is a classic asp:menu with dynamic hover for sub-menu). The problem was simple: the current...
Get System.Drawing.Color from RGB HTML color
31 October 07 04:40 PM | Laurent Duveau
Back to some real content here! Maybe you already know about this, but as I still often see static method like GetColorFromHTML() in companies static class, it could be a good reminder. The idea is when you want to set a color in code, like GridView1...
Filed under: ,