-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebForm1.aspx
More file actions
26 lines (24 loc) · 976 Bytes
/
WebForm1.aspx
File metadata and controls
26 lines (24 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<%@ Page Language="vb" AutoEventWireup="true" CodeBehind="WebForm1.aspx.vb" Inherits="Lesson3.WebForm1" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.12.1/polyfill.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/exceljs/3.8.0/exceljs.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.5/FileSaver.min.js"></script>
<script src="Scripts/beforeRender.js"></script>
</head>
<body >
<form id="form1" runat="server">
<dx:ASPxDashboard ID="ASPxDashboard1" runat="server"
ClientInstanceName="ASPxDashboard1"
AllowInspectAggregatedData="true"
AllowInspectRawData="true"
IncludeDashboardIdToUrl="true"
IncludeDashboardStateToUrl="true"
OnConfigureDataConnection="ASPxDashboard1_ConfigureDataConnection"
ClientSideEvents-BeforeRender="onBeforeRender">
</dx:ASPxDashboard>
</form>
</body>
</html>