blazorstrap dropdown onchange code example
Example: blazorstrap dropdown onchange
//Your answer should be in the cshtml:
Selected Country is: @selectedString
//Then your @functions or @code if Blazor should look like:
@code {
List templates = new List() { "America", "China", "India", "Russia", "England" };
string selectedString = "America";
void OnSelect (ChangeEventArgs e)
{
selectedString = e.Value.ToString();
Console.WriteLine("The selected country is : " + selectedString);
}
}