ASP.NET - How to dynamically generate Labels - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:28:51Z http://stackoverflow.com/feeds/question/733831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels 0 ASP.NET - How to dynamically generate Labels ssssssss 2009-04-09T11:39:17Z 2009-04-09T13:08:37Z <p>I am doing a project on Flight Booking system. My part is to enter the details of the passengers travelling. These passengers may include Adults as well as children. So I need to dynamically generate separate labels and text boxes for all the passengers travelling so that details of all them can be entered.</p> <p>How can I do that?</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/733837#733837 1 Answer by John Nolan for ASP.NET - How to dynamically generate Labels John Nolan 2009-04-09T11:40:37Z 2009-04-09T11:40:37Z <p>You can generate a whole page by using <a href="http://www.w3schools.com/asp/met%5Fwrite%5Fresponse.asp" rel="nofollow">Response.Write()</a></p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/733849#733849 1 Answer by John Saunders for ASP.NET - How to dynamically generate Labels John Saunders 2009-04-09T11:44:55Z 2009-04-09T11:44:55Z <p>Not to be <em>too</em> harsh, but start with <a href="http://www.asp.net/learn/" rel="nofollow">http://www.asp.net/learn/</a>. If you have a more specific question, then edit your original, very vague question.</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/733860#733860 1 Answer by deadbeef for ASP.NET - How to dynamically generate Labels deadbeef 2009-04-09T11:48:07Z 2009-04-09T11:48:07Z <p>It is pretty easy to add controls in the code behind - take a look at the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.controls%28VS.80%29.aspx" rel="nofollow">controls.Add()</a> method.</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/733878#733878 0 Answer by Anirudh Goel for ASP.NET - How to dynamically generate Labels Anirudh Goel 2009-04-09T11:53:27Z 2009-04-09T11:53:27Z <p>You may try this link <a href="http://www.asp.net/Learn/ajax-videos/video-286.aspx" rel="nofollow">http://www.asp.net/Learn/ajax-videos/video-286.aspx</a> and this one <a href="http://www.4guysfromrolla.com/articles/081402-1.aspx" rel="nofollow">http://www.4guysfromrolla.com/articles/081402-1.aspx</a>. I think googling on the keywords "dynamically adding controls in asp page" can help you.</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/733936#733936 1 Answer by Robin Day for ASP.NET - How to dynamically generate Labels Robin Day 2009-04-09T12:05:52Z 2009-04-09T12:05:52Z <p>You may want to look at GridViews / DetailsView / Repeaters etc. You can then write some databinding code to show the different labels for each record as required.</p> <p>As others have said though, a bit more information is needed to answer the question properly. Maybe you could post some of the code you have already so we can point you in the next direction.</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/733999#733999 1 Answer by Mark Brittingham for ASP.NET - How to dynamically generate Labels Mark Brittingham 2009-04-09T12:29:05Z 2009-04-09T12:29:05Z <p>Just to augment what a few others have said: if you are taking this approach then my guess is that you really don't understand how ASP.NET works at a fundamental level. </p> <p>If you want to show a list of passengers then the <em>last</em> thing you would do is to dynamically generate a label control for each passenger - it is just wrong on so many levels.</p> <p>There are two solutions that I can think of. First, you might place a single label in an appropriate position and then fill this label with the HTML necessary to render your passengers (including any hrefs). Second, you could use a GridView or one of its kindred controls to render this kind of information. This was Robin's suggestion and it is really the best approach.</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/734137#734137 0 Answer by XpiritO for ASP.NET - How to dynamically generate Labels XpiritO 2009-04-09T13:06:26Z 2009-04-09T13:06:26Z <p>You page contains a Controls Collection that you can use to append new Controls, as Labels and Textboxes, i.e.</p> <p>You can access this Controls Collection using code-behind, accessing the Page.Controls property and appending the controls you want to display in the page, that will then be rendered.</p> <p>You can check this out: <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.createchildcontrols.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.control.createchildcontrols.aspx</a></p> <p>Here is a simple example you may try out:</p> <p>Codefront (<em>aspx webfor</em>m)</p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;Test Website&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;!-- here you can place the static text and other elements --&gt; &lt;h1&gt;TESTING&lt;/h1&gt; blah blah blah blah blah &lt;/div&gt; &lt;div id="placeholder" runat="server"&gt; &lt;!-- here is where the dinamically created elements will be placed --&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Code-behind</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : System.Web.UI.Page { protected override void CreateChildControls(){ // Add a Label to the current ControlCollection. Label lbl = new Label(); lbl.Text = "Label text"; placeholder.Controls.Add(lbl); // Create a text box control, set the default Text property, and add it to the ControlCollection. TextBox box = new TextBox(); box.Text = "Textbox text"; placeholder.Controls.Add(box); } } </code></pre> <p>Hope this help ;)</p> http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/734144#734144 0 Answer by Toby Mills for ASP.NET - How to dynamically generate Labels Toby Mills 2009-04-09T13:08:37Z 2009-04-09T13:08:37Z <p>Sometimes its much easier just to create your own server control. that way you can control the HTML which is outputted a lot easier and have greater control over different browsers and languages with less code.</p>