Hi Svetlina ,
I want to implement rad tooltip within gridview and the links (<a href="#" title="xyz"> </a>) are dynamically created.
any suggestion how to do this
bcz i have not set any id to the links. and the tooltip have to fetch the records from database via any querystring.
public string ReplaceKeyWords(Match m)
{
string s = null;
string g = m.Value.ToString();
s = "<a title='ok' href=' " + "tooltips.aspx?param=" + m.Value.ToString() + "' ";
if (g == "")
{
return s + "nothing" + ">" + "<span class=highlight>" + g + "</span>" + "</a>"; return "<span class=highlight>" + g + "</span>";
}
else
{
return s + ">" + "<span class=highlight>" + g + "</span>" + "</a>"; return "<span class=highlight>" + g + "</span>";
}
}
Thanks
Chris