[問題] asp.net MVC 繼承 RequiredAttribute

作者: talkmyself (音容苑在)   2023-11-14 14:06:16
我設計的程式如下
public class ValidateFileAttribute : RequiredAttribute
{
public override bool IsValid(object value)
{
var file = value as HttpPostedFileBase;
if (file == null)
{
return true;
}
if (file.ContentLength > 3 * 1024 * 1024)
{
return false;
}
return true;
}
}
輸入以後雖然 IsValid為 false 但是他會跑進去 C#裡面再被isvalid擋掉
可是我用 [Required] 的時候 他是跑不進去會被擋掉
我希望讓他還沒跑進去被擋掉 要怎麼寫?

Links booklink

Contact Us: admin [ a t ] ucptt.com