Click here to Skip to main content
15,890,282 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all

My Dropdown Id is automatically changed to some letter with my setted id.

But I don't want to change the ID.

I searched in google and found this link
ClientIDMode

This is not working for my dropdown.

Is there any other way to made the ID static.

Please Help

Thanks In advance.
Posted
Comments
[no name] 16-Nov-12 9:50am    
see if it works in a brand new project with framework 4.0, if it does copy your code to that project.
anil.luck 16-Nov-12 12:50pm    
What you want exactly?
You mean you are not able to get the id of the dropdown using javascript/jQuery.
Is that so ?

You can do it in jquery like this. its working well.

JavaScript
$("#<%=DropDownList1.ClientID%>").change(function(){
//do sumthing
});
 
Share this answer
 
If you are getting problem for doing jQuery stuff due the id change
Then you can this solution

C#
$('[id*="drpId"]').change(function () {
                /*Your code*/
            });
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900