13 lines
142 B
Plaintext
13 lines
142 B
Plaintext
@model List<string>
|
|
|
|
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
@{
|
|
foreach(string c in Model)
|
|
{
|
|
<option value="@c">@c</option>
|
|
}
|
|
} |