0

对于我的网格视图中的“开始日期”列之一,如果用户具有正确的权限,我想添加一个编辑图标来打开一个允许用户编辑日期的日历。

我有以下代码将图像添加到列中,但它替换了日期,而不是在日期之后附加图像。

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{

    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        if (System.Web.Security.Roles.IsUserInRole(Security.GetUserName(true, true), "UpdateStartDate"))
        {
          HyperLink hl = new HyperLink();
          // hl.Text = e.Row.Cells[6].Text;
          hl.ImageUrl = "../images/pencil.gif";

          e.Row.Cells[6].Controls.Add(hl);
        }
    }
}

网格视图列

<asp:BoundField HeaderText="Start Date" DataField="start_dt" DataFormatString="{0:d}" SortExpression="start_dt" ReadOnly="true" /> 
4

2 回答 2

2

我认为最好使用相反的方法:如果用户具有适当的权限,则不要显示编辑链接,而是如果用户没有,则隐藏链接。在带有日期值的文本框旁边添加超链接控件,并在GridView1_RowDataBound方法中有条件地隐藏它。

于 2012-10-19T03:51:50.393 回答
0

受保护的无效GridView1_RowDataBound(对象发送者,GridViewRowEventArgs e){

if (e.Row.RowType == DataControlRowType.DataRow)
{
    if (System.Web.Security.Roles.IsUserInRole(Security.GetUserName(true, true), "UpdateStartDate"))
    {
      HyperLink hl = e.Row.find("h1")
      // hl.Text = e.Row.Cells[6].Text;
      hl.ImageUrl = "../images/pencil.gif";
      h1.visible=true;

    }
    else
    {
      HyperLink hl = e.Row.find("h1")
      h1.visible=false;
     }
}

}

我认为您在设计本身中添加超链接并控制行数据绑定中的可见性

于 2012-10-19T04:31:38.607 回答