vote up 1 vote down star

Hi, .Net is kindly changing the element ids on my pages by appending a ct100_ to them. As much as I appreciate microsoft trying to help me keep from duplicating ids on my site, I think I can manage it on my own. Can anyone tell me how to prevent this? Thanks in advance.

flag

As you can see from the answers below, there isn't a good way to do it. And if you DO find one, keep in mind that you are basically fighting .Net every step of the way, and it might cause other problems later. Why do you want to do this? – Matt Dawdy Mar 31 at 3:28
I know what you are saying. It is frustrating to have to fight to control an aspect of your development that probably should moderated by .net as opposed to being compulsory. – Praesagus Apr 2 at 19:20

5 Answers

vote up 1 vote down check

You will need to:
override regular controls' behavior to decouple the Control.UniqueID property from the Control.ID property
override naming container controls to allow us to control how ID generation is done and how to find a control

References:
http://nunogomes.net/post/2008/06/02/ASPNET-Controls-Improving-automatic-ID-generation-Architectural-Changes-(-Part-3).aspx


http://weblogs.asp.net/nunogomes/archive/2008/06/04/asp-net-controls-improving-automatic-id-generation-architectural-changes-part-3.aspx


http://forums.asp.net/t/1394822.aspx


link|flag
1  
Here is a solution that is not for the faint of heart. I like it! – Praesagus Apr 2 at 19:13
vote up 2 vote down

You cannot prevent this in the current version of ASP.NET - the next version will allow you to do this. Perhaps ASP.NET MVC is a good choice for you?

link|flag
very interesting, I'll have to check this out. – Praesagus Apr 2 at 19:05
vote up 2 vote down

That's just how aspnet works. Controls provide the clientid method for you to use in your code behind for this reason.

If you want to refer to objects from js, you can either inject the clientid or use classes or other attributes.


Edit: Note that this only applies to the ASP.NET controls. If you use the HTML controls, the given IDs are preserved. You can access them in your code behind by adding the runat=server attribute to them, too. Obviously these controls break the webforms model with viewstate, etc. but they do give you your desired functionality.

Of course it's been a while since I worried about it so I could be wrong...(please comment or edit if I am!).

link|flag
One of the elements in questions is actually an htmlcontrol with an id specified in the html. In spite of that .net still changes my specified id. – Praesagus Apr 2 at 19:03
Good to know, thanks – Michael Haren Apr 2 at 21:54
vote up 1 vote down

to not use anything on the server side.

This is an inherent aspect of the ASP.NET system, and there is no way to use .NET Server controls and not have the prefixes appended.

To access the client-side name, you can use the myControl.ClientID property.

link|flag
vote up 2 vote down

Any control which has the INamingContainer interface on it will get the control heirarchy appended to it to allow for multiple controls to be on the page without conflicting. You should be using the ClientID property of the control if you wish to know what the id of the element will be on the client.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.