about enum

T

Tony Johansson

I fill a dropdownlist in this way
<asp:DropDownList id="DropdownOrderStatus" runat="Server">
<asp:ListItem>Submitted</asp:ListItem>
<asp:ListItem>Processed </asp:ListItem>
</asp:DropDownList>

and I have an enum that looks like this
public enum orderStatusType {Created, Submitted,Processed};

I fetch the control DropDownList in this way
DropDownList ddl =
(DropDownList)DetailsView1.FindControl("dropDownOrderStatus");
I get the text value in this way.
string text = ddl.Text; // So here it says Submitted

Now what I want is to convert the string value Submitted to integer 1
because Submitted is in position 2 in the enum
How can I do that ?

//Tony
 
B

bradbury9

El miércoles, 26 de febrero de 2014 17:18:47 UTC+1, Tony Johansson escribió:
I fill a dropdownlist in this way

<asp:DropDownList id="DropdownOrderStatus" runat="Server">

<asp:ListItem>Submitted</asp:ListItem>

<asp:ListItem>Processed </asp:ListItem>

</asp:DropDownList>



and I have an enum that looks like this

public enum orderStatusType {Created, Submitted,Processed};



I fetch the control DropDownList in this way

DropDownList ddl =

(DropDownList)DetailsView1.FindControl("dropDownOrderStatus");

I get the text value in this way.

string text = ddl.Text; // So here it says Submitted



Now what I want is to convert the string value Submitted to integer 1

because Submitted is in position 2 in the enum

How can I do that ?



//Tony

Check Enum.Parse method:
http://msdn.microsoft.com/es-es/library/essfb559(v=vs.110).aspx
 
J

Jeff Johnson

I fill a dropdownlist in this way
<asp:DropDownList id="DropdownOrderStatus" runat="Server">
<asp:ListItem>Submitted</asp:ListItem>
<asp:ListItem>Processed </asp:ListItem>
</asp:DropDownList>

and I have an enum that looks like this
public enum orderStatusType {Created, Submitted,Processed};

I fetch the control DropDownList in this way
DropDownList ddl =
(DropDownList)DetailsView1.FindControl("dropDownOrderStatus");
I get the text value in this way.
string text = ddl.Text; // So here it says Submitted

Now what I want is to convert the string value Submitted to integer 1
because Submitted is in position 2 in the enum
How can I do that ?

While Enum.Parse() is one solution, you really ought to look at using a data
source (even a simple ObjectDataSource) behind your dropdowns. That way you
can display one value and have a behind-the-scenes value that you can get to
use in further processing, such as the numeric value behind your enum. Look
into the DisplayMember and ValueMember properties of DropDownList. (I think
that's what they're called.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top