ASP.NET MVC2 - 在服务器端验证之前修剪表单提交中的空白?

发布于 2024-10-10 21:26:18 字数 435 浏览 2 评论 0原文

如果我添加验证属性:

public class ProductDownloadListModel
{        
    //xxxxx-xxxxx-xxxxx
    [Required]
    [StringLength(17)]
    public string PSN { get; set; }
    public DateTime PsnExpirationDate { get; set; } 
    public DataTable Downloads { get; set; } 

}

并且用户输入 17 个字符的字符串但末尾包含空格,我会收到验证错误,因为该字符串大于 [StringLength(17)]属性。我怎样才能防止这种情况发生?我不希望在提交之前让 JavaScript 修剪字符串。

If I add a validation attribute:

public class ProductDownloadListModel
{        
    //xxxxx-xxxxx-xxxxx
    [Required]
    [StringLength(17)]
    public string PSN { get; set; }
    public DateTime PsnExpirationDate { get; set; } 
    public DataTable Downloads { get; set; } 

}

and the user enters a 17-character string but includes white space on the end, I get a validation error because the string is greater than that specified by the [StringLength(17)] attribute. How can I prevent this? I'd prefer not to have to have javaScript trim the string before submits.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉酒的小男人 2024-10-17 21:26:18

为 PSN 调整您的设备。

public string PSN
{
    get
    {
        return (this.psn == null) ? string.Empty : this.psn;
    }
    set
    {
        this.psn = (value == null || value.Trim().Length == 0) ? null :value.Trim();
    }
}

Do a trim on your set for the PSN.

public string PSN
{
    get
    {
        return (this.psn == null) ? string.Empty : this.psn;
    }
    set
    {
        this.psn = (value == null || value.Trim().Length == 0) ? null :value.Trim();
    }
}
枕梦 2024-10-17 21:26:18

为什么不在 html 输入上使用 maxlength 属性?

http://www.w3schools.com/tags/att_input_maxlength.asp

Why not use the maxlength attribute on the html input?

http://www.w3schools.com/tags/att_input_maxlength.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文