Dynamic repeater
-
Hi all, Any one help me to create a dynamic Repeater in code behind. I seen most of the coder gives their code of databinding only. Any one can give the idea or code of how to create a dynamic repeater in code behind. Thanks in advance Regards
Senthil.S Software Engineer
-
Hi all, Any one help me to create a dynamic Repeater in code behind. I seen most of the coder gives their code of databinding only. Any one can give the idea or code of how to create a dynamic repeater in code behind. Thanks in advance Regards
Senthil.S Software Engineer
-
Hi all, Any one help me to create a dynamic Repeater in code behind. I seen most of the coder gives their code of databinding only. Any one can give the idea or code of how to create a dynamic repeater in code behind. Thanks in advance Regards
Senthil.S Software Engineer
Repeater r=new Repeater(); r.DataSource=tb; r.DataBind();
-
Do you want to generate the actual control itself in code beind or just the function of it?
We are not a Code Charity
-
This shows you how to create .net controls from code behind, you can just apply this to the repeater. http://support.microsoft.com/kb/317794
We are not a Code Charity