<h1>Dynamic 텍스트박스 데모</h1>
<button @onclick="OkButton">OK</button>
@for (int i = 0; i < mul.Count; i++)
{
@(i)<input type="text" name="mul" @bind="@mul[i]" id="txt@(i)" />
}
@code {
private string msg;
public List<string> mul { get; set; } = new List<string>() { "Red", "Blue", "Green" };
void OkButton()
{
mul.Add("");
msg = mul[0].ToString();
}
}