これは私のクラスです:
Imports System.ComponentModel.DataAnnotations
Public Class Class1
Public Property id As Integer
<Required(ErrorMessage:="First Name is required.")> _
<Display(Name:="fname")> _
<MaxLength(10)> _
Public Property fname As String
<Required(ErrorMessage:="Last Name is required.")> _
<Display(Name:="lname")> _
<MaxLength(12)> _
Public Property lname As String
<Range(100000, 1200000)>
Public Property salary As Decimal
End Class
ASP.NET WebForms の部分クラスでデータ注釈を使用することは可能ですか?