Type t =typeof(Sit_showcase);System.Reflection.PropertyInfo[] properties = t.GetProperties();foreach(System.Reflection.PropertyInfo info in properties){Response.Write("name="+ info.Name+";"+"type="+ info.PropertyType.Name+";value="+GetObjectPropertyValue<Sit_showcase>(showcase, info.Name)+"<br />");}