I have the below code in my model and I want to make it required just I can other data types like string by adding [Required] but it is not working on this type.
public HttpPostedFileBase Docs
{
get;
set;
}
@Html.FormTextBoxFor(m => m.Docs)
this is how I am creating it in the view.
Can someone please tell me what I have to do so that it displays a Required attribute for the HttpPostedFileBase type.
Thanks