HI
I have sending the view of my page.i want to code for submit button in control page.
<form id="FTE_form" method="get" action="">
<fieldset>
<legend>TransferLog</legend>
<div>
<table class="table-no-borders">
<tr>
<td>
@Html.LabelFor(x => x.selCountry)
</td>
<td>
@Html.DropDownListFor(x => x.selCountry, Enumerable.Empty<SelectListItem>())
</td>
</tr>
<tr>
<td>
@Html.LabelFor(x => x.selServiceName)
</td>
<td>
@Html.TextBoxFor(x => x.selServiceName)
</td>
</tr>
<tr>
<td>@Html.LabelFor(x => x.isAudit)</td>
<td>
@Html.RadioButtonFor(x => x.isAudit, true, new { @id = "radAudit" })
<label for="radioAudit">Audit</label>
@Html.RadioButtonFor(x => x.isAudit, false, new { @id = "radException" })
<label for="radioException">Exception</label>
</td>
</tr>
<tr>
<td>
@Html.LabelFor(x => x.selStartDateTime)
</td>
<td>
@Html.EditorFor(x => Model, "propStartFullDateTime")
</td>
</tr>
<tr>
<td>
@Html.LabelFor(FTE =>FTE.selEndDateTime)
</td>
<td>
@Html.EditorFor(x => Model, "propEndFullDateTime")
</td>
</tr>
<tr>
<td>
@Html.LabelFor(x => x.selResultsPerPage)
</td>
<td>
@Html.DropDownListFor(x => x.selResultsPerPage, Model.commonProp.resultsPerPage)
</td>
</tr>
</table>
<input type="button" id="search_Transfer_Log_result" value="Submit" />
</div>
</fieldset>
</form>