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