I have a form defined thus in a razor file.
@using (Html.BeginForm())
{
}
Within this form I have fields such as
<input type="text" readonly="readonly" name="MaxBudget" value="Any" id="SearchMaxBudget">
and a couple of structures like
<div class="ui-widget-content" style="height: 100px; width: 200px; overflow: auto;" id="amenitiesLog"><div>Hair dryer and shaving adaptor</div><br></br><div>Airport shuttle service</div><br></br></div>
I'd like to take the data from these fields and structures and pass them to the controller when I hit this button
<input type="button" class="btn-leftsearch" />
What bits am I missing and how can this be acheived?
Thanks,