use javascript an call a function like this:
function HighLight(obj)
{
var objs = document.all;
for (var i=0; i<objs.length; i++)
{
if (objs[i].className == 'hilite')
{
objs[i].className = 'nohilite';
}
}
obj.className = 'hilite';
}
[quoted text, click to view] On Thu, 8 Jul 2004 23:41:51 +0200, "Eirik Eldorsen" <NOoSPAAAMeirik@eldorsens.nettsider.no> wrote:
>Is it possible to make the mouseover event of a ImageButton to change the
>border color?
>
>I use this code to change the src:
>ImageButton.Attributes.Add("onmouseover", "this.src='someImage.jpg'");
>
>
>
>Eirik Eldorsen
>
Bobby Ryzhy
bobby@ name of domain below