I'm a total asp.net newbie just fixing a bug in some code.
I want a hidden field that displays the integer representation of a enum.
Currently the following line displays the "Text" / human readable version of the enum.
<asp:Label ID="lblNoteType" runat="server" Text='<%# Bind("NoteType") %>'></asp:Label>
What do I need to do to the "Bind("NoteType")" so that it displays the int representation instead of the verbal?
Thanks