0

私は gridview を持っています。その中に Itemtemplete があります。itemtemplete には、<th>条件付きで表示または非表示にする必要がある があります。その条件を計算するためのサーバー側関数を呼び出したいです。

この行でエラーが発生しています

<th align="left" <%# String.Format("getDisplay(Eval('QuestionId'))") %> runat="server" id="chkTh">

それを解決する方法。

4

2 に答える 2

1

このように使用できます

protected void OnRowCreated(object sender, GridViewRowEventArgs e)
{
    e.Row.Cells[columnIndex].Visible = false;
}
于 2013-09-06T05:55:50.587 に答える
0

あなたはこのようにすることができます:

<th align="left"  style="<%# getDisplay(Convert.ToString(Eval('QuestionId'))) %>" runat="server" id="chkTh">

    public string getDisplay(string QuestionId)
    {
          //check for the visibility over here and return "display:none;" if you want to hide
    }
于 2013-09-06T06:07:40.713 に答える