Comment augmenter l'affichage des info-bulles de temps?

J'ai un GridView, dans son RowDataBound Cas, je suis attribution d'info-bulle comme ci-dessous:

protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
    try
    {
        if (gv.HeaderRow != null && e.Row.RowType == DataControlRowType.DataRow)
        {  
            e.Row.ToolTip = "Remarks: " + ((Label)e.Row.FindControl("lblRemarks")).Text;
        }
    }
    catch (Exception ex)
    {
        BussinessLayer.RIBOException.Instance.HandleMe(this, ex);
    }
}

Ici, j'ai envie de prolonger la durée d'affichage de l'info-bulle.
Comment faire cela?

Essayez lien suivant : forums.asp.net/t/1580504.aspx/1

OriginalL'auteur thevan | 2012-08-18