تقييمات الطلاب
( 5 من 5 )
١ تقييمات
فيديو شرح Custom Validator in ASPMVC ضمن كورس ASP.net شرح قناة Prog Lix، الفديو رقم 43 مجانى معتمد اونلاين
Create New Folder
Add new Class inside created folder
using System.ComponentModel.DataAnnotations;
public class name : ValidationAttribute
{
readonly variables;
constructor (): base ("{0} Error Message")
{
}
public override bool IsValid (object value)
{
if (condition)
return true;
else
return false;
}
}