有点愚蠢的问题,但我如何更改我的网站的语言,我有一个使用cookie的功能,我只想打电话给它。像这样:
@helper selected(string c, string culture)
{
if (c == culture)
{
@:checked="checked"
}
}
现在我有一个
<select>
<option>English</option>
<option>German</option>
</select>
如何将值从此列表传递给字符串c?