WebControl & Viewstate

C

Chris

I'm trying to create a WebControl that creates additional WebControls at runtime and persists their data across the PostBack.

The basic idea is this:

public class WebControl1: System.Web.UI.WebControls.WebControl
{
// Member Variables, Properties, etc...

protected override void Render(HtmlTextWriter output)
{
RadioButton myRadioButton = new RadioButton();
myRadioButton.ID = "RadioButton1";
myRadioButton.GroupName = "RadioButtonGroup1";
Page.Controls.Add(myRadioButton);
myRadioButton.RenderControl(output);
}
}

When this control is used on a page such as:

<tag:webcontrol id="WebControl1" runat="server"></tag:webcontrol>

..... everything loads up nicely (i.e. a RadioButton is rendered to the page). Obviously, because the control (myRadioButton) is created each time the class is loaded and the HTML output is rendered, if the RadioButton is toggled (checked), it will not retain its state.

Rather than go into all of the things I've *tried* to do to get this RadioButton to persist its Checked property across PostBack's, I'll just pose my question directly which is what do I need to add to this (very simple) code to get that RadioButton to persist its state across PostBack's?

Obviously, at some point I need to *save* the value the user sets it to and at some point I need to check that value and restore it when the control is re-created on PostBack but where? Override some methods (SaveViewState/LoadViewState)? Implement an Interface (IPostBackDataHandler, etc...)?

Much thanks in advance -

- Chris
 
V

Victor Garcia Aprea [MVP]

Hi Chris,

The radiobutton is not saving its state because it is being created too
late; at Render lots of important key events have already fired (Init,
viewstate loading, etc) and your control was not there yet to be called by
the fx to update its state/etc. Please take a look at the Control Execution
Lifecycle to learn more about how it will affect dynamically created
controls. Here[1] you will find a link to the docs and some insights I've
written about the topic.

[1] http://weblogs.asp.net/vga/archive/2003/08/11/23498.aspx

--
Victor Garcia Aprea
Microsoft MVP | ASP.NET
Looking for insights on ASP.NET? Read my blog:
http://obies.com/vga/blog.aspx
To contact me remove 'NOSPAM'. Please post all questions to the newsgroup

Chris said:
I'm trying to create a WebControl that creates additional WebControls at
runtime and persists their data across the PostBack.
The basic idea is this:

public class WebControl1: System.Web.UI.WebControls.WebControl
{
// Member Variables, Properties, etc...

protected override void Render(HtmlTextWriter output)
{
RadioButton myRadioButton = new RadioButton();
myRadioButton.ID = "RadioButton1";
myRadioButton.GroupName = "RadioButtonGroup1";
Page.Controls.Add(myRadioButton);
myRadioButton.RenderControl(output);
}
}

When this control is used on a page such as:

<tag:webcontrol id="WebControl1" runat="server"></tag:webcontrol>

... everything loads up nicely (i.e. a RadioButton is rendered to the
page). Obviously, because the control (myRadioButton) is created each time
the class is loaded and the HTML output is rendered, if the RadioButton is
toggled (checked), it will not retain its state.
Rather than go into all of the things I've *tried* to do to get this
RadioButton to persist its Checked property across PostBack's, I'll just
pose my question directly which is what do I need to add to this (very
simple) code to get that RadioButton to persist its state across PostBack's?
Obviously, at some point I need to *save* the value the user sets it to
and at some point I need to check that value and restore it when the control
is re-created on PostBack but where? Override some methods
(SaveViewState/LoadViewState)? Implement an Interface (IPostBackDataHandler,
etc...)?
 
C

CMA

r u creating the control in page load event???
if so, u r creating it again and again. u can make sure it with a break
point. if so, create it withing this code.

if(!IsPostBack)
{
// create control here
}

in this way, u r creating the control only once. it will remain the state by
default.

if u r not creating the controll every time, my guess is wrong.

hope this helps.
regards,
CMA




Chris said:
I'm trying to create a WebControl that creates additional WebControls at
runtime and persists their data across the PostBack.
The basic idea is this:

public class WebControl1: System.Web.UI.WebControls.WebControl
{
// Member Variables, Properties, etc...

protected override void Render(HtmlTextWriter output)
{
RadioButton myRadioButton = new RadioButton();
myRadioButton.ID = "RadioButton1";
myRadioButton.GroupName = "RadioButtonGroup1";
Page.Controls.Add(myRadioButton);
myRadioButton.RenderControl(output);
}
}

When this control is used on a page such as:

<tag:webcontrol id="WebControl1" runat="server"></tag:webcontrol>

... everything loads up nicely (i.e. a RadioButton is rendered to the
page). Obviously, because the control (myRadioButton) is created each time
the class is loaded and the HTML output is rendered, if the RadioButton is
toggled (checked), it will not retain its state.
Rather than go into all of the things I've *tried* to do to get this
RadioButton to persist its Checked property across PostBack's, I'll just
pose my question directly which is what do I need to add to this (very
simple) code to get that RadioButton to persist its state across PostBack's?
Obviously, at some point I need to *save* the value the user sets it to
and at some point I need to check that value and restore it when the control
is re-created on PostBack but where? Override some methods
(SaveViewState/LoadViewState)? Implement an Interface (IPostBackDataHandler,
etc...)?
 
C

Chris

Thank you!!! I've got it working now.

I can't believe all this time I should have just been creating these things in Page_Load()... Doh! There are so many methods, events, interfaces, etc... it all starts to mash together!

- Chris
 
V

Victor Garcia Aprea [MVP]

Glad I could help :)

--
Victor Garcia Aprea
Microsoft MVP | ASP.NET
Looking for insights on ASP.NET? Read my blog:
http://obies.com/vga/blog.aspx

To contact me remove 'NOSPAM'. Please post all questions to the newsgroup

Chris said:
Thank you!!! I've got it working now.

I can't believe all this time I should have just been creating these
things in Page_Load()... Doh! There are so many methods, events, interfaces,
etc... it all starts to mash together!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top