S
shapper
Hello,
I have an enumeration:
' Level
Public Enum Level
Professor
Student
' ...
End Enum ' Level
And a property of type Level:
' Levels
Private _Levels As Generic.List(Of Level)
Public Property Levels() As Generic.List(Of Level)
Get
Return _Levels
End Get
Set(ByVal value As Generic.List(Of Level))
_Levels = value
End Set
End Property ' Levels
I need to display, in my web page, N CheckBoxes which one showing a
Level.
Then I want to check the CheckBoxes which value exists in the property
Levels (Generic List).
How can I do this?
Thanks,
Miguel
I have an enumeration:
' Level
Public Enum Level
Professor
Student
' ...
End Enum ' Level
And a property of type Level:
' Levels
Private _Levels As Generic.List(Of Level)
Public Property Levels() As Generic.List(Of Level)
Get
Return _Levels
End Get
Set(ByVal value As Generic.List(Of Level))
_Levels = value
End Set
End Property ' Levels
I need to display, in my web page, N CheckBoxes which one showing a
Level.
Then I want to check the CheckBoxes which value exists in the property
Levels (Generic List).
How can I do this?
Thanks,
Miguel