2

我有一个 GridView BoundField

<asp:BoundField HeaderText="Secret" DataField="encrypted" DataFormatString="***"/>

我只想在用户编辑行时解密此字段。这样做的合乎逻辑的地方似乎在RowDataBound(). 我尝试使用e.Rows.Cells,但在编辑时它是的(否则会是'***')。

我可以使用 获取基础值DataRowView,但我不知道在编辑时如何在 TextBox 中获取解密数据。

protected void OnRowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        if (e.Row.RowState.HasFlag(DataControlRowState.Edit))
        {
            // When in Normal state, e.Row.Cells[0].Text is '***'
            // When in Edit state, e.Row.Cells[0].Text is empty.
            string cellValue = e.Row.Cells[0].Text; // Always empty

            // Get the encrypted field
            DataRowView rowView = (DataRowView)e.Row.DataItem;
            string decrypted = Decrypt(rowView["encrypted"].ToString());

            // This doesn't work - how to get this value in the edit box?
            e.Row.Cells[0].Text = decrypted;
        }
    }
}

看起来我必须访问显示的编辑控件,但是如何?

4

1 回答 1

1

使用 BoundField,没有一个有据可查的方法来查找编辑控件。您可能会发现它是 Cell 中的第一个控件,但为了将来证明您的解决方案,我建议使用模板字段:

<asp:TemplateField  HeaderText = "Secret">

    <ItemTemplate>
        *****
    </ItemTemplate>
    <EditItemTemplate>
        <asp:TextBox ID="txtSecret" runat="server"

            Text='<%# Decrypt(Eval("encrypted").ToString()) %>'></asp:TextBox>

    </EditItemTemplate> 
</asp:TemplateField>

您的 Decrypt 方法必须在类上公开。甚至不需要 OnRowDataBound

于 2018-03-19T22:42:32.780 回答