Let's say I have a DropDownList server control, called "CategoriesDDL" and the ClientID proeprty determines its client side id, which is its ID prefixed with the id's NamingContainer's ids. In this case the client side ID is CP1_CategoriesDDL. But what is the rule regarding the client side name, in this case "ct100$CP1_CategoriesDDL"?
|
|
|
Any chance you're simply after the Control.UniqueId property? Server side, this will return the client side "name" attribute value of the control. |
|||
|
From: http://msdn.microsoft.com/en-us/library/system.web.ui.control.clientid.aspx |
|||||||||||||
|
|
Are you using ASP.NET 4? If thats the case, the default for the ClientIDMode property on server controls is "Predictable". If you change that to Auto, you will get same client id and client name except Also look out for the If you are not using ASP.NET 4, seems there is some different reason for your issue. |
||||
|