ใน asp.net 2.0中,如果在一个masterpage页上中,使用服务端的table控件的话,如下所示,会在设置视页的时,没了其中的contentplaceholder,
<asp:Table ID="tbl" runat="server ">
<asp:TableRow>
<asp:เทเบิลเซลล์>
นี่คือส่วนหัวของฉัน!
</asp:เทเบิลเซลล์>
</asp:TableRow>
<asp:TableRow>
<asp:เทเบิลเซลล์>
<asp:contentplaceholder id="_content" runat="เซิร์ฟเวอร์">
</asp:contentplaceholder>
</asp:เทเบิลเซลล์>
</asp:TableRow>
<asp:TableRow>
<asp:เทเบิลเซลล์>
นี่คือส่วนท้ายของฉัน!
</asp:เทเบิลเซลล์>
</asp:TableRow>
</asp:Table>
而如果用普通的页子table的话,则不会出现如下的问题,
<ตาราง>
<tr>
<td>
นี่คือส่วนหัวของฉัน!
</td>
</tr>
<tr>
<td>
<asp:contentplaceholder id="_content" runat="เซิร์ฟเวอร์">
</asp:contentplaceholder>
</td>
</tr>
<tr>
<td>
นี่คือส่วนท้ายของฉัน!
</td>
</tr>
</ตาราง>
微软已经确认是个小BUG拉,将会在下一个版本解决,具体参考:
http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=6345496f-76eb-4e6c-aa95-791bfbfc24a0
出处:jackyrong BLOG