BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@Imports Syncfusion.EJ2
<!DOCTYPE html>
<html>
<head>
...
<!-- Syncfusion Essential JS 2 Styles -->
<link rel="stylesheet" rel='nofollow' rel='nofollow' href="https://cdn.syncfusion.com/ej2/material.css"/>
<!-- Syncfusion Essential JS 2 Scripts -->
</head>
<body>
...
@Html.EJS().ScriptManager()
</body>
</html>
|
<pages pageBaseType="System.Web.Mvc.WebViewPage">
<namespaces>
...
<add namespace="VBSample" />
<add namespace="Syncfusion.EJ2" />
</namespaces>
</pages> |
[Index.vbhtml]
@Imports Syncfusion.EJ2
@Html.EJS().Grid("Grid").DataSource(Model).AllowPaging().Render()
[HomeController.vb]
Function Index() As ActionResult
BindDataSource()
Dim contracts = order
Return View(contracts.ToList())
End Function
|