Repeater and Status text

  • Thread starter Thread starter Joe Fallon
  • Start date Start date
J

Joe Fallon

I use a repeater on my .aspx page.
When I mouseover the hyperlink while it is running the Status bar text
reads:
javascript:__doPostBack(....)

I want to hide this "ugly" status window but I am not sure how.
(Or even change it to something I can define.)

1. Is it possible?
2. If so, how?

Thanks!
 
have you tried something like

MyRepeater.Attributes.Add("onmouseover", "window.status='Hi there!'; return
true")

Alexey
 
Back
Top