Implementing Web AppBuilder in ASP.NET Core 3.1

706
1
06-28-2020 12:15 AM
sundhart
New Contributor

I want to implement web app builder in ASP.NET Core 3.1. Is there any step by step approach to refer and implement?

0 Kudos
1 Reply
KiroAndreev1
New Contributor II

Hi,

this is next steps for implement WAB into Asp.net Core:

  1. Copy your WAB project
  2. Paste into root of wwwroot
  3. create View with next content:

<script src="env.js"></script>
<script type="text/javascript" src="simpleLoader.js"></script>
<script type="text/javascript" src="init.js"></script>
<link rel="stylesheet" type="text/css" href="configs/loading/loading.css" />
<div class="box" id="containerId">
<div id="main-loading">
</div>
<div id="main-page">
<a role="link" id="trapLinkNode" tabindex="0"></a>
<div id="jimu-layout-manager"></div>
<div id="skipContainer"></div>
</div>
</div>

Also, WAB work only if you have domain name on Web Browser address bar like:https://localhost:44326/ .

You must to hide controller and action name from URL.

I hope help you.

0 Kudos