値が1の場合、グリッドビュー列の値をアクティブに変更したいと思います。次のようなグリッドビュー列があります
<asp:BoundField DataField="STATUS" HeaderText="STATUS" SortExpression="STATUS" HeaderStyle-HorizontalAlign="Left">
<HeaderStyle HorizontalAlign="Left"></HeaderStyle>
</asp:BoundField>
そしてcsコード
protected void gvCategory_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[5].Text=="0")
{
e.Row.Cells[5].Text = "INACTIVE";
}
}
}
これは機能していますが、列の順序を変更すると失敗します。私が必要とするのは、findControl 関数のようなものです。ありがとう。