Skip to main content
A newer version of this page is available. .

How to: Create an ASP.NET MVC Dashboard Designer Application

  • 2 minutes to read

This example shows how to create an ASP.NET MVC Dashboard Designer application with a set of default data connections.

<!DOCTYPE html>

<html>
<head>
    <meta charset="UTF-8" />
    <title>@ViewBag.Title</title>

    @Html.DevExpress().GetStyleSheets( 
        new StyleSheet { ExtensionSuite = ExtensionSuite.Dashboard }
    )
    @Html.DevExpress().GetScripts( 
        new Script { ExtensionSuite = ExtensionSuite.Dashboard }
    )    
</head>

<body>
    @RenderBody()
</body>
</html>