Features

Server Load

Server Load

FlexSheet allows you to load an xlsx file or a Workbook instance on the server side.

Features

Server Load

FlexSheet allows you to load an xlsx file or a Workbook instance on the server side.

$0.00
$1.00
$2.00
$3.00
$4.00
$5.00
$6.00
$7.00
  • Sheet1
1
2
3
4
5
6
7
8
9
10
11
12
using Microsoft.AspNetCore.Mvc;
  
namespace FlexSheetExplorer.Controllers
{
    public partial class FlexSheetController : Controller
    {
        public ActionResult ServerLoad()
        {
            return View();
        }
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div>
    <div class="copy">
        <h3>
            @Html.Raw(FlexSheetRes.ServerLoad_Text2)
        </h3>
<p>@Html.Raw(FlexSheetRes.ServerLoad_Text0)</p>
  
    </div>
    <div>
        <c1-flex-sheet class="flexSheet" file-path="~/Content/xlsxFile/example1.xlsx"></c1-flex-sheet>
    </div>
</div>
@section Summary{
<p>@Html.Raw(FlexSheetRes.ServerLoad_Text1)</p>
  
}