ImageButton

  • Thread starter Thread starter Paul Russell
  • Start date Start date
P

Paul Russell

I haven't found a good example of how to use this button for the purposes of
opening a new web page.

Scenario: User clicks ImageButton (which points to my RSS file) and a URL
open sort of event occurs.

Anyone ?
 
An image button is exactly that - a button. If you want to link to
something, then you will have to trap the button press event and then do a
redirect to the new URL. Alternatively, you could just use a HyperLink
object, which allows you to use an image instead, which would be the more
direct approach.
 
I was just about to do the latter, not sure why trapping the button event
did not occur to me earlier.

Thanks
 
Back
Top