<a asp-action="Index" asp-route-id="1">1</a>
<form asp-action="Index" method="get"><select name="id"><option value="1">1</option></select></form>
Hi, how can I generate same route like in the hyperlink (Home/Index/1) from form below?
<a asp-action="Index" asp-route-id="1">1</a>
<form asp-action="Index" method="get"><select name="id"><option value="1">1</option></select></form>
Hi, how can I generate same route like in the hyperlink (Home/Index/1) from form below?