Gridview Select Event does not fire

  • Thread starter Thread starter eric.dehaan
  • Start date Start date
E

eric.dehaan

Hello,

I'm writing my own mini-CMS. Default.aspx has a placeholder which i
dynamicly populate with Web User Controls. On of these controls
consists of three Gridviews. The Select command doesn't get fired
when I click 'Select' on these gridviews. But, when I create an
empty aspx page, with no usercontrols and Masterpage, the select
commands works. So it must be the combination of using web
usercontrols and masterpages.

Has anyone any idea?

Thanks in advance.
 
I think I solved my own problem... In default.aspx, I put the
LoadWebcontrols in a if(!IsPostback) statement, so on a postback...
the page will not be reloaded.
 
Back
Top