I'm very new to MVC3.In my view page I've a dropdown list and some fields data in the following way.
View:-
//dropdownlist data
@Html.DropDownList("Category", new SelectList(categoriesList, selectedCategory), "Select One", new { onchange = "this.form.submit();" })
@Html.EditorFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
<input type="submit" name="Create" value="Create" />
Here both the submit button and dropdown control submitting the form I'm wondering how the controller can identify the call is happened via submit button but not from the dropdownlist. your help is really appreciate.