标签: asp.net gridview tooltip
我使用以下代码在gridview上显示工具提示。
if (e.Row.RowType == DataControlRowType.Header) { int i = 0; foreach (TableCell cell in e.Row.Cells) { cell.Attributes.Add("title", reason[i]); i++; } }
页面加载时会显示工具提示,但是在发生单击事件后,工具提示会停止显示。