工具提示未显示以下点击事件

时间:2009-08-03 07:29:32

标签: 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++;
    }
}

页面加载时会显示工具提示,但是在发生单击事件后,工具提示会停止显示。

0 个答案:

没有答案