gpt4 book ai didi

asp.net-mvc - 使用 ASP.NET MVC 辅助方法设置 maxlength 和其他 html 属性

转载 作者:行者123 更新时间:2023-12-04 09:13:10 26 4
gpt4 key购买 nike

目前,当我想设置像 maxlength 和 autocomplete 这样的 html 属性时,我必须使用以下语法:

<%= Html.TextBox("username", ViewData["username"], new { maxlength = 20, autocomplete = "off" }) %>

有什么方法可以做到这一点而不必显式设置 ViewData["username"] 部分?换句话说,我想依赖辅助方法的自动加载例程,而不是必须明确告诉它从 ViewData 加载哪个字段。

最佳答案

只需将“null”作为第二个参数传递:

<%= Html.TextBox("username", null, new { maxlength = 20, autocomplete = "off" }) %>

关于asp.net-mvc - 使用 ASP.NET MVC 辅助方法设置 maxlength 和其他 html 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/487204/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com