Kinda stupid question, but how do i change the language of my site, i have a function that uses cookies and i just want to call it. like this:
@helper selected(string c, string culture)
{
if (c == culture)
{
@:checked="checked"
}
}
and now i have a
<select>
<option>English</option>
<option>German</option>
</select>
how do i pass the value to string c from this list?