ASP.net Server controls: How to handle ID of dynamic controls - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T22:32:20Zhttp://stackoverflow.com/feeds/question/725542http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/725542/asp-net-server-controls-how-to-handle-id-of-dynamic-controls1ASP.net Server controls: How to handle ID of dynamic controlsJuri2009-04-07T12:50:16Z2009-04-07T13:05:45Z
<p>Hi,</p>
<p>I have the following problem (I'll explain it simplified because otherwise it would get too complicated/long).</p>
<p>I need to create an ASP.net server control that is inherited from Panel. Simple enough. When the custom control renders, it should dynamically create a Button, associate an event handler to it (which will also be defined inside the server control) and add this button to the rendered control. The click event handler defined inside the server control does some job which for the moment isn't interesting.</p>
<p>I already coded an example and that works fine. In the constructor of the server control I create a new button control, give it an ID, associate an event handler, on the OnInit of the server control I add the button to the Panel controls (remember, my control inherits from Panel) and then everything gets rendered. This looks something like the following:</p>
<pre><code>public class MyCustomControl: Panel
{
private Button myButton;
public MyCustomControl()
{
myButton = new Button();
myButton.ID = "btnTest";
myButton.Click += new EventHandler(btnTest_Click);
}
protected void btnTest_Click(object sender, EventArgs e)
{
//do something...
}
//...
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
this.Controls.AddAt(0, myButton);
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
//...
}
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
}
protected override void Render(HtmlTextWriter output)
{
base.RenderContents(output);
}
}
</code></pre>
<p>This works quite fine. The button gets rendered correctly and when I click on it, the appropriate handler inside this customer server control is invoked and executed. Now the problem however starts when I would like to add multiple instances of this server control to my page because all of my generated buttons will have the same id "btnTest" which results in a conflict. So what I tried is to associate a random number to the id of the button, s.t. it end up being "btnTest1235512" or something similar. This solves my problem with the multiple IDs, but results in the problem that my event handler when clicking on the button is no more called correctly. I guess this is due to the problem that my button always gets another id when entering in the constructor and so the appropriate callback (btnTest_Click event handler) isn't found.</p>
<p>Can someone give me a suggestion how I could handle the problem. Is there some way for remembering the ID of the button and re-associating it. As far as I know however this has to happen in the OnInit, where the ViewState isn't yet available. So storing the id in the ViewState wouldn't work.</p>
<p>Any suggestions??</p>
http://stackoverflow.com/questions/725542/asp-net-server-controls-how-to-handle-id-of-dynamic-controls/725567#7255673Answer by rwwilden for ASP.net Server controls: How to handle ID of dynamic controlsrwwilden2009-04-07T12:57:43Z2009-04-07T12:57:43Z<p>Implementing <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.inamingcontainer.aspx" rel="nofollow"><code>INamingContainer</code></a> should fix the problem. You can then keep naming all your buttons <code>btnTest</code>.</p>
<p>This is just a marker interface so you don't have to implement any methods or properties.</p>
http://stackoverflow.com/questions/725542/asp-net-server-controls-how-to-handle-id-of-dynamic-controls/725575#7255750Answer by Josh for ASP.net Server controls: How to handle ID of dynamic controlsJosh2009-04-07T13:00:57Z2009-04-07T13:00:57Z<p>Inherit from INamingContainer like:</p>
<pre><code>public class MyCustomControl : Panel, INamingContainer
{
}
</code></pre>
<p>This is a marker interface and requires no implementation. I just verified with your code and it solves your problem.</p>
http://stackoverflow.com/questions/725542/asp-net-server-controls-how-to-handle-id-of-dynamic-controls/725588#7255880Answer by Amr ElGarhy for ASP.net Server controls: How to handle ID of dynamic controlsAmr ElGarhy2009-04-07T13:03:36Z2009-04-07T13:03:36Z<p>Check this question, it may help: <a href="http://stackoverflow.com/questions/699677/-net-changes-the-element-ids/699691#699691">.Net Changes the element IDs</a></p>
http://stackoverflow.com/questions/725542/asp-net-server-controls-how-to-handle-id-of-dynamic-controls/725603#7256030Answer by Brandon Montgomery for ASP.net Server controls: How to handle ID of dynamic controlsBrandon Montgomery2009-04-07T13:05:45Z2009-04-07T13:05:45Z<p>Implementing INamingContainer will do it for you. It will automatically name the buttons with unique ID's. Just a note, if you need to use any of those buttons in any JavaScript, you'll need to use the ClientID property:</p>
<pre><code>function getButton() {
var myButton = document.getElementById('<%=btnTest.ClientID %>');
}
</code></pre>