代码在用户端不会更改,而在服务器上也不会更改

时间:2019-04-01 14:07:42

标签: asp.net gridview

我对服务器上的网站代码进行了一些更改,并在客户端进行了反映,但是当我在GridView_RowCreated中进行了更改时,所做的更改未反映在客户端上 我现在将代码中的“显示”更改为“ Dbl”。

protected void GridViewAllItems_RowCreated(object sender, GridViewRowEventArgs e)
{
   e.Row.Attributes.Add("onclick", " changecolor.call(); this.style.background ='#ffffcc';headColor.call();");
   e.Row.Attributes.Add("ondblclick", "changecolor.call(); this.style.background ='#ffffcc';Ischosen('Dbl'); ");
   hfCurrentIndex.Value = e.Row.TabIndex.ToString();
}

0 个答案:

没有答案