Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim obj As New <someclass>
''show all properties and their value in a class
Dim prop As System.Reflection.PropertyInfo
For Each prop In obj.GetType.GetProperties
Response.Write(prop.Name + "<br>")
Response.Write(prop.GetValue(obj, Nothing) + "<br>")
Response.Write(prop.MemberType.ToString + "<BR>")
Next prop