Which Event Is Firing?

  • Thread starter Thread starter Joe Delphi
  • Start date Start date
J

Joe Delphi

Hi,

I have a DataGrid with one column defined as a hyperlink column. I
wrote a SelectedIndexChanged event handler to handle processing when the
user clicks on that hyperlink. But all I get is a 404 error -it doesn't
appear to be firing the event handler at all.

Is some other event handler firing? Which one?


JD
 
SelectedIndexChanged doesn't fire on a hyperlink. It simply goes to the
hyperlink location.

You "can" set up a handler for the hyperlink though

Jeff
 
Hi,

I have a DataGrid with one column defined as a hyperlink column. I
wrote a SelectedIndexChanged event handler to handle processing when the
user clicks on that hyperlink. But all I get is a 404 error -it doesn't
appear to be firing the event handler at all.

Is some other event handler firing? Which one?


JD

If you use a LinkButton, does that solve your problem?
Peter Kellner
http://peterkellner.net
 
Back
Top