我想要其行可点击的asp.net gridview。
我想在根据行索引单击该行时调用一个函数。
我尝试使用 RowDataBound 事件,但它没有用或我
我使用了以下代码
protected void PeopleGridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "this.style.cursor='hand';this.style.textDecoration='underline';";
e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';";
e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink(this.PeopleGridView, "Select$" + e.Row.RowIndex);
}
}
我哪里错了?
我不想重定向到任何其他页面。我想在同一页面上的文本框中填写值