Is there any sample where a "@using (Html.BeginForm())" form is submitted using ajax, basically without refreshing a page? I am trying to load a tab on submit of a search form.
Hi HHH,
if you want you can bind to click event of the submit button (I suppose you still need it) and inside the click callback, you can construct your ajax request, so you can load the tab.
Thanks,