本文介绍了GridView仅在用户拥有记录的情况下显示命令字段!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我希望网格视图仅针对这些记录显示命令字段(编辑,删除)
由当前登录的用户拥有.

谢谢!

Hi,

I want a grid view to show command field(edit, delete) against those records only
which are owned by the user that is currently logged-in.

Thanks!

推荐答案

protected void grdAppSettingsORDB(Object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType.Equals(DataControlRowType.DataRow))
        {
            DataRowView dataRow = (DataRowView)e.Row.DataItem;
            Image imgHelp = (Image)e.Row.FindControl("imgHelp");
            if (null != imgHelp)
            {
                imgHelp.ToolTip = dataRow["Description"].ToString();
            }
        }
    }


这篇关于GridView仅在用户拥有记录的情况下显示命令字段!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 21:07