Tagged Questions

10
votes
3answers
4k views

C# asp.net Why is there a difference between ClientID and UniqueID?

I know ClientID is used for javascript and UniqueId for server side and that ClientID uses an underscore (_) and UniqueId uses a dollar sign ($) in asp.net 2.0. But what I don't get is why use two ...
4
votes
3answers
302 views

When is Control.UniqueId created?

Does anybody know when a control's UniqueId is assigned? Right now I've got some code in my Page_Init that is based off the UniqueId. However, depending on some business logic, I might need to ...
1
vote
1answer
252 views

namingContainer ID with dynamic gridviewrow

This will not be a very clear explanation of my problem, but I don't know how to explain it better. I have a gridview which I create dynamically on PreInit. This gridview has textboxes dynamically ...
0
votes
1answer
763 views

Dynamic Gridview Template and Unique Control (ie textbox, label) IDs?

When creating a Gridview at design time you can create a template column like this: <asp:TemplateField> <ItemTemplate> <asp:Label runat="server" ...