ASP.NET项目中有母版页时,为什么要修改对象名称?
我正在创建一个 asp.net 项目,所有页面都有一个母版页。 当我的对象位于母版页中时,为什么我的对象名称(例如 ID=“div1”的 div)更改为 ctl00_ div1?
I am creating a asp.net project that have one master page for all pages.
Why my object's name for example my div with ID="div1" is changed to ctl00_ div1 when this object is in master page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是为了保证id的唯一性。
母版页可以包含来自多个源的内容,因此它会在每个 id 前面添加内容,以确保它在所有源中都是唯一的。前面的值表示内容所在的内容部分。
It is to ensure uniqueness of the id.
The Master Page can include content from multiple sources, so it prepends to each id to ensure it is unique across all sources. The value prepended represents the content section the content is within.