c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
asp.net MVC

How to use html beginform in asp.net mvc using areas?

| | CSharp , Html , MVC

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