aspnetcore/test/testapps/BasicTestApp/InputEventComponent.cshtml

10 lines
214 B
Plaintext

<input bind-value-oninput=@inputText />
<p>The text below should update automatically as you type in the text field above</p>
<p id="test-result">@inputText</p>
@functions {
string inputText { get; set; }
}