I have this:
<div class="editor-field">
<%: Html.DropDownListFor(m => m.Language, new SelectList(new[] { "string1", "string2", "string3", "string4" }, "string1"))%>
</div>
I want the strings to have some values. Example, string1, to have a value=1, string2: value=2, etc. How to do this?