字符串长度Mvc
如您所知,mvc 模型中有一个名为 [StringLength]
的属性。我有一个 int
变量,我想将其限制为最多 4 个字符。我需要类似 [IntLength]
的内容。你能帮助我吗?
[Display(Name="Credit card number:")]
[RegularExpression(@"\d{4}")]
public int BookingCardNumberFirstFour { get; set; }
<%: Html.TextBoxFor(model => model.BookingCardNumberFirstFour, new {style="width:40px;"}) %>
As you know there is a property called [StringLength]
in model of mvc. I have a variable which is an int
and I want to restrict it to maximum 4 characters. I need something like [IntLength]
. Can you help me?
[Display(Name="Credit card number:")]
[RegularExpression(@"\d{4}")]
public int BookingCardNumberFirstFour { get; set; }
<%: Html.TextBoxFor(model => model.BookingCardNumberFirstFour, new {style="width:40px;"}) %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用范围属性。
如果您希望他们输入正好 4 位数字,请使用正则表达式属性。
You can use the range attribute.
if you want them to enter exactly 4 digits use the regular expression attribute.