Label control |
|
Posted By
Georgi
on
4/2/2008 9:29:28 AM |
|
|
|
Description: |
If I understand you right, you want to create a Label controls dinamiclly.
If so for every value that you want to display from the database you can do:
Label l = new Label();
l.Text = "The value from the database here";
this.Form.Controls.Add(l); |
|
|
|