I have a Panel. Now in that panel, i\'m adding controls. It is getting added and displayed.The problem is when the page is posted back.I know the controls have to be binded
I have done this before by storing the data from the controls in session.
Every time you dynamically add a control, store the current data entered into the controls in session or viewstate for example, and then rebind on postback. Not the most elegant solution but it worked. I take it this is a webforms question?