2

So apparently this error is a known bug in VS 2012, when you try to set a to runat="server", that contains a or element.

Well I'm actually using VS 2010, (though IT did install 2012 last night, and rumors persist that it will trigger this in 2010 as well) and the table elements in question don't have the thead or tbody elements that are supposedly causing this error. But they do have the runat="server" attribute and colgroup elements.

So is this related to the installation of VS 2012? And if so, is there a hotfix for this?

UPDATE: Removing the colgroup elements seems to resolve this. Even still, this is pretty irritating.

cDecker32
  • 813
  • 1
  • 10
  • 20

2 Answers2

3

Applying this patch has worked for me: http://www.microsoft.com/en-us/download/details.aspx?id=36359

Obs. I'm using Windows 7 x64, with both VS2010 and VS2012 installed.

Fabio
  • 3,020
  • 4
  • 39
  • 62
2

Had this problem after upgrading to VS 2012 with a <table run="server"...> that contained a <tbody> element. Removing the <tbody> resolved the build error for me.

Mark
  • 551
  • 6
  • 13