I am looking at adding master pages to an existing site, but have found that as soon as I do this, item identifiers are added with code (for example, ctl00_MainPageContent_).
Unfortunately, this violates existing scripts on the page that use the original, unmodified element identifier.
I understand that I can replace it with <%= Element.ClientID %>, but it would be great if I could completely disable this behavior.
So, can I keep the original identifiers?
source
share