Hi,
I want to know ,is it possible to call a view with parameter from another view
during button click?
<div class="view-button">
<input class="show-button" value="click me" type="button"
onclick=" @Html.Action("Call", "Catalog", new { a = "product-item" })" />
</div>
instead of calling an action in the view can i call another view directly during button click?
Go to the complete details ...