We have a standard asp.net web application and have used asp:PlaceHolders in multiple places. In some files we get this error message during runtime:

BC30311: Value of type 'System.Web.UI.WebControls.PlaceHolder' cannot be converted to 'System.Web.UI.HtmlControls.HtmlTableRow'.

Why?

If I remove the place holder the page renders just fine.

Here is the html (simplified version):

<table runat="server" id="tblExtradata" visible=true>               
  <asp:PlaceHolder ID="test" runat="server" Visible="true">
    <tr>
      <td>
        <asp:Label ID="lblExpenses" runat="server" Text="Expensesr"></asp:Label>
      </td>
    </tr>
  </asp:PlaceHolder>
</table>

Version Information: Microsoft .NET Framework Version:2.0.50727.5446; ASP.NET Version:2.0.50727.5420

link|improve this question

It turns out that the table never needed to be runat="server". Why this was added I don't know, as it wasn't used in the code behind, but removing it solved the problem. (<table> works just fine) – Halvard Aug 15 '11 at 11:13
feedback

1 Answer

up vote 0 down vote accepted

Because you're running the table at the server, it expects only table elements nested within. If you take the runat="server out of the table, it should work fine.

link|improve this answer
This is correct, as I already wrote in the comment to my question. – Halvard Aug 17 '11 at 7:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.