Hi Beachguy,
Based on my experience, I think you should attach a Javascript to the LinkButton's focus. (LinkButton will be a <a> element on the client) For Example,It is a onclick sample , you should do some modifications.
protected void Page_Load(object sender, EventArgs e)
{
ImageButton myImageButton;
Button myButton;
for (int i = 0; i < _list.Items.Count; i++)
{
myImageButton = (ImageButton)_list.Items[i].FindControl("_image");
myButton = (Button)_list.Items[i].FindControl("Button1");
myImageButton.Attributes.Add("onClick", "changeClick('"+myButton.ClientID+"');return false;");
}
}
Now when the mouse over the LinkButton, the focus event is fired. Then the Javascript function will set the LinkButton's Text to be value of a control which will be sent as a parameter to the procedure.
I hope this help.
Best regards,
Jonathan