gpt4 book ai didi

asp.net - 表不工作

转载 作者:行者123 更新时间:2023-12-02 16:13:24 24 4
gpt4 key购买 nike

我正在 asp.net webform 中使用表格

我正在尝试这样:

<div>
<asp:Table ID="Table1" runat="server">
<tr>
<td> asdf </td>
<td> asdf </td>
</tr>
</asp:Table>
</div>

它不工作。

asdf asdf Error Creating Control - UpdatePanel1System.Web.UI.WebControls.TableRowCollection must have items of type 'System.Web.UI.WebControls.TableRow'. 'tr' is of type 'System.Web.UI.HtmlControls.HtmlTableRow'.

最佳答案

您将 ASP.NET 服务器端控件与标准 HTML 混合在一起。看看examples on MSDN :

<asp:Table id="Table1" runat="server"
CellPadding="10"
GridLines="Both"
HorizontalAlign="Center">
<asp:TableRow>
<asp:TableCell>
Row 0, Col 0
</asp:TableCell>
<asp:TableCell>
Row 0, Col 1
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
Row 1, Col 0
</asp:TableCell>
<asp:TableCell>
Row 1, Col 1
</asp:TableCell>
</asp:TableRow>
</asp:Table>

在本例中,asp:Table 的直接子标记是 asp:TableRow(服务器端控件),而不是 tr (HTML 标签)。

关于asp.net - 表不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13475335/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com