-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWebForm1.aspx
More file actions
21 lines (18 loc) · 799 Bytes
/
WebForm1.aspx
File metadata and controls
21 lines (18 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="AspxDashboard_GettingStarted.WebForm1" %>
<%@ Register Assembly="DevExpress.Dashboard.v24.2.Web.WebForms, Version=24.2.15.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.DashboardWeb" TagPrefix="dx" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div style="position:absolute; left:0; right:0; top:0; bottom:0;">
<dx:ASPxDashboard ID="ASPxDashboard1" runat="server"
DashboardStorageFolder="~/App_Data/Dashboards"
Height="100%" Width="100%">
</dx:ASPxDashboard>
</div>
</form>
</body>
</html>