The mvc html begin form link to the action method of the controller that renders the form. The Html helper BeginForm has several overrides.
The below example uses four parameters such as the name of the action method, controller to submit the form, routevalues attribute and form method.
Mvc Html BeginForm example: (with area)
@using (@Html.BeginForm("Create", "Category", new { area = "admin" }, FormMethod.Post))
{
@Html.Partial("_Category", Model)
}
Here, the controller that renders the form is Category, Action method is created and area is Admin. If you want to go different area, then modify the area field and set new area.
Without area:
@using (@Html.BeginForm("index", "Home", new { area = "" }, FormMethod.Post))
{
// call the controller
}
If you want access the home controller, outside the Areas from the admin area you should specify the empty quotes for the parameter.
what is an area in asp.net mvc and how to implement? for more detail link here
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article