0
<asp:Table ID="tbl_Main" runat="server">
<asp:TableRow>
<asp:TableCell>
**<a href=""> </a>**
</asp:TableCell>
</asp:TableRow>
</asp:Table>
非常基本的吧?我可是從代碼填充此背後是這樣的:錨上動態創建的表
int rowCount = myset.Tables[0].Rows.Count;
int cellCount = myset.Tables[0].Columns.Count;
for (int rowCtr = 1; rowCtr <= rowCount; rowCtr++)
{
// Create new row and add it to the table.
TableRow tRow = new TableRow();
tbl_Main.Rows.Add(tRow);
for (int cellCtr = 1; cellCtr <= cellCount; cellCtr++)
{
// Create a new cell and add it to the row.
TableCell tCell = new TableCell();
tCell.ID = BuildMyPath(rowCtr.ToString(), cellCtr.ToString());
tCell.Text = "Row " + rowCtr + ", Cell " + cellCtr;
tRow.Cells.Add(tCell);
}
}
正如你可以看到香港專業教育學院增加了一個ID來,我想給小區的href內有其價值的T細胞。
現在我已經嘗試過接近所有的eval表達式,但都沒有工作。 基本上我想這樣做:
<a href="<%= Eval("tCell.ID")%>"> </a>
謝謝。
我想避免使用g另一個div,並瞭解eval的用法 –