C
Christian Robert Schulz
Hi there,
in my website I'm buildung the whole page by loading webusercontrols
dynamically using Page.LoadControl("~..."). Within these webusercontrols, I'm
using asp.net controls such as the (old) DataGrid. Since the whole page has
to "rebuild" any time a postback was invoked, i have to rebind the grid any
time before I can react to some of the events that have been fired by a
rowitem like a linkbutton with commandName - so this worked on asp.net 1.1!
After migration to asp.net 2.0, the eventhandlers for the Grid.ItemCommand
doesn't get any events that have been fired by controls that have been
clicked on and initiated the eventhandler.
Do you have any ideas what i can do to get "the old strategy" working?
Thanks a lot!
in my website I'm buildung the whole page by loading webusercontrols
dynamically using Page.LoadControl("~..."). Within these webusercontrols, I'm
using asp.net controls such as the (old) DataGrid. Since the whole page has
to "rebuild" any time a postback was invoked, i have to rebind the grid any
time before I can react to some of the events that have been fired by a
rowitem like a linkbutton with commandName - so this worked on asp.net 1.1!
After migration to asp.net 2.0, the eventhandlers for the Grid.ItemCommand
doesn't get any events that have been fired by controls that have been
clicked on and initiated the eventhandler.
Do you have any ideas what i can do to get "the old strategy" working?
Thanks a lot!