Nuno Gomes /* ASP.NET Adventures */

var myInterests = new { language : "C#", technology: "ASP.NET" };

  • .NET Framework 2.0 SP1 - TagMapping Undocumented hotfix

    While searching a way to solve the HtmlControls tag mapping problem I found that the new SP1 bring an extra undocumented hotfix.

    This undocumented hotfix changes MainTagNameToTypeMapper.GetControlType method so that, for every tag name regardless is kind, a tag type mapping is always performed.

    This little change enables us to tag map HtmlControls the same way we map WebControls and UserControls. Here is an example: [more]