Hi,<BR>I have a hash table that I want to display in a dropdown list, but I can't figure out how to display either the key or the value property. I can sucessfully bind to it etc but when viewed in the browser the value of the dropdownlist is "System.Collections.DictionaryEntry". I don't know what to supply in the dataTextField property.<BR><BR><asp
ropDownList id="Users" dataTextField="???" runat="server" />Through much pain (due to no documentation) it is as simple as this:<BR><BR><asp
ropDownList id="Users" ataTextField="value" DataValueField="key" runat="server" /><BR><BR>key and value (lower-case) must be reserved words but I couldn't find anything on MS saying so.<BR>

