admin管理员组文章数量:1344310
Having just upgraded to the latest ASP.NET MVC Release Candidate I noticed that, when using Html Helpers, any name with a period "." in it will have this replaced by an underscore "_" when the element's ID is output.
I believe this is to aid in using JQuery and the use of the period is to aid in the use of ModelBinders. This has broken all of our javascript, which uses prototype, as the IDs have all changed.
Is there a way to turn this feature off easily?
Having just upgraded to the latest ASP.NET MVC Release Candidate I noticed that, when using Html Helpers, any name with a period "." in it will have this replaced by an underscore "_" when the element's ID is output.
I believe this is to aid in using JQuery and the use of the period is to aid in the use of ModelBinders. This has broken all of our javascript, which uses prototype, as the IDs have all changed.
Is there a way to turn this feature off easily?
Share Improve this question edited May 23, 2017 at 11:57 CommunityBot 11 silver badge asked Feb 24, 2009 at 14:44 Paul ShannonPaul Shannon 1,17310 silver badges15 bronze badges1 Answer
Reset to default 14From the ASP.NET MVC RC1 Release notes (page 15).
In this release, by default the dot character is automatically replaced with an underscore in the value of the ID attribute. Thus the example TextBox renders the following markup:
<input type="text" name="Person.FirstName" id="Person_FirstName" />
To change the default replacement character, you can set the HtmlHelper.IDDotReplacementChar property to the character that you want to use instead.
FYI. Looking at the source code at http://www.codeplex./aspnet, it appears that the real name of the property in RC1 is IdAttributeDotReplacement. The relevant code snippet is below. To keep the dot, you'd just set this property to the dot character -- i.e., replace the dot character with itself.
public static string IdAttributeDotReplacement {
get {
if (String.IsNullOrEmpty(_idAttributeDotReplacement)) {
_idAttributeDotReplacement = "_";
}
return _idAttributeDotReplacement;
}
set {
_idAttributeDotReplacement = value;
}
}
版权声明:本文标题:javascript - Preventing ASP.NET MVC from Replacing period with underscore in Html Helper IDs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743793968a2540084.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论