I just started learning how to make websites with using Blazor template. But I don't know how to pass the data from one page to another. It is a bit different than .NET CORE MVC web application and I couldn't find an example for this.
<p>Solve This problem: @rnd1 * @rnd2 = ?</p><input type="text" name="result" bind="@result" /><input type="button" onclick="@calculate" value="Submit" />I want to send the value in my textbox to the another page. How can I do this?