Hi everybody,
I have dynamically created multiple Label controls in the placeholder, now I want to recreate them on every page load.
As I understand I should put unique ID to every label and then store this IDs somwhere, I don't know where?
Another question:
Let's say I have this
<asp:Label ID="lbl" Text="sometext"/>
How is it possible that my page can recreate control based only on ID, I mean only thing that I should store is ID, how does page know Text value of that particular control??
Go to the complete details ...