How to add controls in UI and database coloumns in table
I have requirement for loading dynamic controls on my page.i had button addmore>> when i click that button i need create row containing 3 columns with one dropdown,2 text box controls in my page.how to do this and please try to guide me.my user want to create many rows but initially page he dont want load all those controls..when click add more only we need create..
please send me samp开发者_Python百科le code..
santhosh
You can have a panel created and then on the button click event, create instances of controls and add it to the the panel's control collection.
You can you use p.Control.Add method to add controls to your panel
精彩评论