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);
            }
        }

ご覧のとおり、Cell の href 内に ts 値を設定したい ID を tCell に追加しました。

今、私は SO のすべての eval 式に近いものを試しましたが、どれもうまくいきませんでした。基本的に私は次のようなことをしたいと思います:

<a href="<%= Eval("tCell.ID")%>"> </a>

ありがとう。

4

2 に答える 2

0

デザイン:

<div id="anchor" runat="server">

</div>

コードビハインドで設定する必要があります:

anchor.InnerHtml="Div Content";   //Same use for <a> tag

またはあなたが設定したいものは何でも

于 2013-11-01T10:04:13.710 に答える