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 programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
- How to calculate days difference between two dates in c#?
- Changing date format in jQuery ui datepicker
- How to set value to nicedit textarea using jQuery?
- How to load data from json file in angular?
- cannot find module consider using '--resolvejsonmodule' to import module with json extension angular
Related Article