我有一个 Gridview 和 rowDatabound 我正在创建单击该行并显示模式弹出窗口。我想要的是当单击该行时,应该传递该行的 ID。
protected void grdOrderProduct_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#ceedfc'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=''");
e.Row.Attributes.Add("style", "cursor:pointer;");
e.Row.Attributes["onClick"] = Page.ClientScript.GetPostBackClientHyperlink(btnPop, "12");
}
}
我怎样才能在我的服务器控件上获取这个“12”。我已将 12 作为静态演示。但它会改变。