If you’re building a site that contains nested applications, you may find yourself confused at what appears to be IIS completely disregarding your virtual directories. The behavior is by design. Although the applications will get isolated, the web.config settings from parent applications propagate to children applications. An easy fix is to simply wrap your web.config with …
Author Archives: Jean-Sebastien Carle
Linus Torvalds supports Microsoft’s initiative
It didn’t take long for the entire world to learn about Microsoft’s submittable of 20,000 lines of code for the Linux driver base. As a surprise reaction to both sides of the camp, Linus Torvalds responded in favor of Microsoft’s move. I have a feeling that the most memorable portion of his response will become this little snippet …
Continue reading “Linus Torvalds supports Microsoft’s initiative”
Turn your ASP.NET pages into valid XHTML Strict pages
Many developers seem to find it difficult to get their ASP.NET pages rendering in a valid XHTML Strict fashion. The solution is just a quick MSDN lookup away. Only two steps are required. One, declare the proper XHTML Strict DOCTYPE : Two, edit your Web.Config file and the following to the System.Web section : ASP.NET …
Continue reading “Turn your ASP.NET pages into valid XHTML Strict pages”