ASP.NET - How to dynamically generate Labels - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:28:51Zhttp://stackoverflow.com/feeds/question/733831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels0ASP.NET - How to dynamically generate Labelsssssssss2009-04-09T11:39:17Z2009-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#7338371Answer by John Nolan for ASP.NET - How to dynamically generate LabelsJohn Nolan2009-04-09T11:40:37Z2009-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#7338491Answer by John Saunders for ASP.NET - How to dynamically generate LabelsJohn Saunders2009-04-09T11:44:55Z2009-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#7338601Answer by deadbeef for ASP.NET - How to dynamically generate Labelsdeadbeef2009-04-09T11:48:07Z2009-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#7338780Answer by Anirudh Goel for ASP.NET - How to dynamically generate LabelsAnirudh Goel2009-04-09T11:53:27Z2009-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#7339361Answer by Robin Day for ASP.NET - How to dynamically generate LabelsRobin Day2009-04-09T12:05:52Z2009-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#7339991Answer by Mark Brittingham for ASP.NET - How to dynamically generate LabelsMark Brittingham2009-04-09T12:29:05Z2009-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#7341370Answer by XpiritO for ASP.NET - How to dynamically generate LabelsXpiritO2009-04-09T13:06:26Z2009-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><%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test Website</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<!-- here you can place the static text and other elements -->
<h1>TESTING</h1>
blah blah blah blah blah
</div>
<div id="placeholder" runat="server">
<!-- here is where the dinamically created elements will be placed -->
</div>
</form>
</body>
</html>
</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#7341440Answer by Toby Mills for ASP.NET - How to dynamically generate LabelsToby Mills2009-04-09T13:08:37Z2009-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>