我有一个链接按钮,它是我的 gridview 的模板字段。我需要在每一行中将不同的文本设置为链接按钮的工具提示。我的代码不起作用,
protected void Grid_course_RowDataBound(object sender, GridViewRowEventArgs e)
{
connect con = new connect(date);
if (e.Row.RowType == DataControlRowType.DataRow )
{
LinkButton l = (LinkButton)e.Row.Cells[0].FindControl("Course_Name");
IList<connect.Course> a = con.getCourse(l.Text);
var result = string.Join(",", a[0].Course_Description__c);
l.ToolTip = result.ToString();
}
}
它仅适用于第一行。