Here, I want to pass name attributes to the Form. But this is passing name as query string: Following is the code I have used:
@using (Html.BeginForm("Upload", "AjaxUpload", new { @name = "form1" })) {
I have also remove @ at name it works as query string. WOuld you please tell how to pass name attributes like below:
<form name = "form1" action = "..">