Quantcast
Channel: John Chapman » Web | John Chapman
Viewing all articles
Browse latest Browse all 10

[SharePoint 2010] Error 7043: Load control template file /_controltemplates/TaxonomyPicker.ascx failed

$
0
0

One of the nuances of SharePoint 2010 that has been plaguing my Windows Event log is Error 7043 indicating an issue with the TaxonomyPicker.ascx control:

Load control template file /_controltemplates/TaxonomyPicker.ascx failed: Could not load type 'Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker' from assembly 'Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'.

Apparently, someone over at Microsoft made a typo in the TaxonomyPicker.ascx file. There is an HTML code rather than a comma in the first line of the file. To fix this, open the following file:

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\CONTROLTEMPLATES\TaxonomyPicker.ascx

In the first line, replace “,” with a comma. Original:

<%@ Control className="TaxonomyPickerControl" Language="C#" Inherits="Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker,Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

Fixed:

<%@ Control className="TaxonomyPickerControl" Language="C#" Inherits="Microsoft.SharePoint.Portal.WebControls.TaxonomyPicker, Microsoft.SharePoint.Portal, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

This has been an issue since at least beta and still has not been fixed as of the June 2011 Cumulative Update. Come on Microsoft… Until Microsoft fixes it, this workaround resolves the issue.

Update 2011-07-08: According to this article, the referenced control no longer exists in the SharePoint DLLs and should simply be removed. To be on the safe side, simply rename the control to something like “TaxonomyPicker.ascx.BAK” just in case.


Viewing all articles
Browse latest Browse all 10

Trending Articles