<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);
}
}
ご覧のとおり、Cell の href 内に ts 値を設定したい ID を tCell に追加しました。
今、私は SO のすべての eval 式に近いものを試しましたが、どれもうまくいきませんでした。基本的に私は次のようなことをしたいと思います:
<a href="<%= Eval("tCell.ID")%>"> </a>
ありがとう。