tags:

views:

82

answers:

1

I have a datalist containing usercontrol placed in update panel, any of these usercontrols may contain a datalist.I'm trying to fire ondeletecommand of the inside datalist but nothing happens.Any clue

+1  A: 

Did you hook the OnDeleteCommand in the user control containing the data list? Each container will fire their own respective events

Jon
Of course I did and it works fine on its own.The problem is: it is contained in a nested datalist, firing the innermost onitemcommand nothing happens.
Izabela
Just checking, do you add the user controls in markup or in code behind?
Jon