
Signature
Sincerely,
S. Justin Gengo, MCP
Web Developer / Programmer
www.aboutfortunate.com
"Out of chaos comes order."
Nietzsche
What I have now is a table with one row with three cells. Each cell has some
"pretty" background in it, and in the center cell there is some text, or, if
need be, a real button. It's essentially a customized button that should act
like a button control.
I could in theory inherit button and override render, but I think that still
leaves me with a problem - this control needs to raise a click event
server-side in its containing form. Yes, I can manually raise the click
event in with OnClick, but from where do I fire that? A contained button's
click event? That doesn't work, the control - whether it be inherited from
Control or Button - refuses to handle it.
Please tell me about postback hookup code.
Paul
> PJ6,
>
[quoted text clipped - 25 lines]
>> RaiseEvent Click(Me, e)
>> End Sub
S. Justin Gengo - 16 Oct 2005 02:40 GMT
PJ6,
This article will explain what you need to do:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbco
nWebFormsEventModel.asp

Signature
Sincerely,
S. Justin Gengo, MCP
Web Developer / Programmer
www.aboutfortunate.com
"Out of chaos comes order."
Nietzsche
> What I have now is a table with one row with three cells. Each cell has
> some "pretty" background in it, and in the center cell there is some text,
[quoted text clipped - 41 lines]
>>> RaiseEvent Click(Me, e)
>>> End Sub