I am trying to create a web user control that will take a parameter that is a type name that I can use to build a dropdown list of the property names available in the type.
This may not be the best way to do things so I am open to ideas.
Thanks.
DBrown
System.Type.GetType(string name);
Greg Beech
System.Type.GetType(string name);
Greg Beech
Thanks Greg!
Boy do I feel sheepish. I thought I had tried that but I did not fully qualify it with System. I must have been getting Object or something else. Thanks again for the help.