problem with hidden field from a custom control in a form

  • Thread starter Thread starter ThunderMusic
  • Start date Start date
T

ThunderMusic

Hi,
I have a custom control that draws many thing on the screen including a
hidden field. This hidden field's value is modified through client code.
What I want to do is the following : When there is a postback of the page, I
want this hidden field to keep it's value (from the viewstate or something
like this). Is there an easy solution? Would you need the code.

Right now I :
create a HiddenField in the PreRender of my control
store it in a member variable
render it in the RenderBeginTag
modify it from client-side code
I want to access it's value in the RenderContents method when there is a
post back but right now, the value is always blank.

Is there a solution to my problem? Am I doing the things right and missing a
little tiny thing?

Thanks

ThunderMusic
 
ok, I found it... I have to create my HiddenField in the OnInit event of
my control so the viewstate is reloaded correctly between the OnInit and the
OnLoad of my control.

Thanks to all

ThunderMusic
 
One of the royal pains of of asp.net is that when you are using dynamic
controls, you have to render them prior to the firing of the postback events
in order to get the original value. To me this is excess overhead as in many
cases you may end up drawing controls twice.

You could do this in the Load event as well.
 
Do you mean to say that dynamic controls need to be recreated (not
rendered) and added back to the page control tree before the postback
events are handled?
 
Back
Top