有没有办法在 MVC 2 中验证传入的 HttpPostedFilebase 文件?
除了一些简单的标量数据之外,我还需要保存几个文件。有没有办法让我验证文件是否已与其余表单数据一起发送?我正在尝试使用 [Required]
属性,但它似乎不起作用。
I have a couple of files I need to save in addition to some simple scalar data. Is there a way for me to validate that the files have been sent along with the rest of the form data? I'm trying to use the [Required]
attribute, but it doesn't seem to be working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下内容对我有用。
型号:
控制器:
视图:
The following worked for me.
Model:
Controller:
View: