This section briefly explains about how to include a simple Spreadsheet in your ASP.NET MVC application. You can refer ASP.NET MVC Getting Started documentation page for introduction part of the system requirements and configure the common specifications.
Spreadsheet component can be rendered by using the EJS().Spreadsheet()
tag helper in ASP.NET MVC application. Add the below simple code to your index.cshtml
page which is available within the Views/Home
folder, to initialize the Spreadsheet.
@Html.EJS().Spreadsheet("spreadsheet").Render()
public IActionResult Index()
{
return View();
}
Output be like the below.
The following example shows a basic Spreadsheet component.
@Html.EJS().Spreadsheet("spreadsheet").Render()
public IActionResult Index()
{
return View();
}