Create object at runtime
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
I want to create lable and Txtboxes at runtime. And i want them to be placed at the position where i want.I am working on ASP.Net 2003.
Mohinder Singh
Simply create ibjects of Button and Label class give id and Add placeholder here you want to add button or label
Button btn = new Button(); btn.ID = "SubmitBtn"; PlaceHolder1.Controls.Add(btn);
Thanks and Regards Sandeep If you want something you never had, do something you have never done!