我对服务器上的网站代码进行了一些更改,并在客户端进行了反映,但是当我在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();
}