2
Answers

Static Dropdown List Values

Ramco Ramco

Ramco Ramco

Aug 26
365
1

Hi

  I have defined below dropdown list but i want Values should be saved as 0,1,2

static List<string> lst = new List<string>() { "Monthly", "Quarterly", "HALF YEARLY", "YEARLY" };
public Incentives_Period()
{
}

public static  List<string> InCentivesPeriod
{
    get
    {
        return lst;
    }
}

Thanks

Answers (2)