c# - 动态添加行我在asp.net中有下表:
<table style="width: 98%" id="tblOtherDoc">
<tr>
<td style="width: 10; text-align: left;">
<span">Documents:</span>
</td>
</tr>
问问题
4428 次
2 回答
2
可以使用 asp.net 表控件:
例如。在 C# 代码中添加一行:
TableRow row = new TableRow();
TableCell cell = new TableCell();
cell.Controls.Add(new TextBox());
row.Cells.Add(cell);
table.Rows.Add(row);
在您的 .aspx 页面中:
<asp:Table ID="table" runat="server" />
于 2012-06-04T19:08:15.517 回答
0
使用 Kapils 答案,但从复选框中删除 jquery 代码。使用 jquery 附加到 onclick 事件。代替复选框详细信息中的 onclick="otherDocsClicked(this)" ,为复选框添加一个类,例如。chkDoSomething 然后执行以下操作。
$(".chkDoSomething").live('change',function(){
//your code goes here.
}
然后你应该能够像 Kapil 建议的那样在 c# 中添加行,并且你的 jquery 应该仍然触发
于 2012-06-08T05:43:23.310 回答
我在asp.net中有下表:
<table style="width: 98%" id="tblOtherDoc">
<tr>
<td style="width: 10; text-align: left;">
<span">Documents:</span>
</td>
</tr>
问问题
4428 次
2 回答
2
可以使用 asp.net 表控件:
例如。在 C# 代码中添加一行:
TableRow row = new TableRow();
TableCell cell = new TableCell();
cell.Controls.Add(new TextBox());
row.Cells.Add(cell);
table.Rows.Add(row);
在您的 .aspx 页面中:
<asp:Table ID="table" runat="server" />
于 2012-06-04T19:08:15.517 回答
0
使用 Kapils 答案,但从复选框中删除 jquery 代码。使用 jquery 附加到 onclick 事件。代替复选框详细信息中的 onclick="otherDocsClicked(this)" ,为复选框添加一个类,例如。chkDoSomething 然后执行以下操作。
$(".chkDoSomething").live('change',function(){
//your code goes here.
}
然后你应该能够像 Kapil 建议的那样在 c# 中添加行,并且你的 jquery 应该仍然触发
于 2012-06-08T05:43:23.310 回答