Wednesday, October 24, 2007 7:44 AM
ASP.NET controls have three different ID values assigned to it:
Regular ID that's used in the designer
Unique ID that uniquely identifies it for cases where repeater-type controls are used
Client ID that uniquely identifies it on the client
The difference between the Unique and the Client ID's is this:
Unique uses the $ seperator, Client uses the _ seperator. Otherwise the values are the same.
Thanks to Shane for his post for explaining it in detail.
D