asp.net 2.0中tablecontrol搭配masterpage的小bu…

2008-02-22 09:33:35来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

在asp.net 2.0中,如果在一个masterpage页面中,使用服务端的table控件的话,如下所示,会在设置视图时,没了其中的contentplaceholder,

<asp:Table ID="tbl" runat="server">
<asp:TableRow>
<asp:TableCell>
This is my header!
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:contentplaceholder id="_content" runat="server">
</asp:contentplaceholder>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
This is my footer!
</asp:TableCell>
</asp:TableRow>
</asp:Table>

而如果用普通的页面table的话,则不会出现如下的问题,
<table>
<tr>
<td>
This is my header!
</td>
</tr>
<tr>
<td>
<asp:contentplaceholder id="_content" runat="server">
</asp:contentplaceholder>
</td>
</tr>
<tr>
<td>
This is my footer!
</td>
</tr>
</table>
微软已经确认是个小BUG拉,将会在下一个版本解决,具体参考:
http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=6345496f-76eb-4e6c-aa95-791bfbfc24a0


出处:jackyrong BLOG

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Asp.Net中文本换行

下一篇:在ASP.NET页面中推荐使用覆写(Override)而不是事件处理(Event