Hi,
I would like to reuse a webcontrol in several places and when a
certain action is being executed in the webcontrol, a defineable
method should run. That method of course is defined in an event in the
webcontrol:
public event CommandEventHandler MyCallBack;
Now in the hosting control I can do stuff like
myCallBack += this.MyCallbackHandler;
and that will work for that one request, but I have to specify
MyCallbackHandler at every roundtrip. Is it possible to store this
information somehow? I played around with ViewState, but I found out
that a CommandEventHandler cannot be serialized. Am I missing a design
rule?
TIA,
DC
bruce barker - 15 Apr 2008 02:05 GMT
object addresses can not be serialized. you could copy the browsers and
have a string method to store the callback. then on callback use
refection to call the routine.
not sure why you do not want to hookup the callback every postback? some
code has too as they are new class instances.
-- bruce (sqlwork.com)
> Hi,
>
[quoted text clipped - 17 lines]
> TIA,
> DC
DC - 15 Apr 2008 08:37 GMT
> object addresses can not be serialized. you could copy the browsers and
> have a string method to store the callback. then on callback use
[quoted text clipped - 28 lines]
>
> - Zitierten Text anzeigen -
Thanks, Bruce. I thought it was more convenient to set the callback
only once but you are actually right, it is not that much effort to
wire it up on every postback.
Regards
DC