@page "/"
<select value="@Foo" @onchange="Update">
<option>(none)</option>
<option>First</option>
<option>Second</option>
</select>
<div>
Value of Foo: @Foo
</div>
@code {
private string Foo {get;set;} = "First";
private void Update(ChangeEventArgs args) {
Foo = "First";
return; // doesn't actually change it
}
}