1
I have a View
who has a div
and within it goes a partialview
EX:
<div>
@Html.RenderPartial("MeuPartial");
</div>
In the right page render load, however, I needed it to render every time I click on a button.
<button class="btn btn-primary" [email protected]("MeuPartial");>Atualizar</button>
the onclick
does not accept the method.
How do I render inside the div
?