forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx
More file actions
97 lines (87 loc) · 4.07 KB
/
Default.aspx
File metadata and controls
97 lines (87 loc) · 4.07 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<%@ Page Language="C#" %>
<%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<link rel="stylesheet" href="../resources/css/main.css" />
<script>
Ext.onReady(function () {
if (top !== self) {
Ext.select("a").on("click", function (e, el) { parent.location = el.href; }, null, { preventDefault : true });
}
});
</script>
</head>
<body>
<ext:ResourceManager runat="server" />
<ext:Viewport runat="server" Cls="welcome" Layout="VBoxLayout">
<Items>
<ext:Container runat="server" Height="185">
<Content>
<%--<div id="ee-ad-wrapper">
<div id="ee-ad">
<div>
<p>SAVE50</p>
<p style="padding-top:18px;">SAVE250</p>
</div>
<a href="http://www.ext.net/store/">Store »</a>
</div>
</div>--%>
<div id="welcome-title">
<div>Rapidly Build</div>
<span>Your Vision</span>
</div>
<div id="welcome-links">
<div id="title">Popular Examples</div>
<div class="list">
<ext:Container runat="server" Title="links" Layout="HBoxLayout">
<Items>
<ext:Container runat="server" Flex="1">
<Content>
<p><span>1</span><a href="/#/Getting_Started/Introduction/Overview/">Getting Started</a></p>
<p><span>2</span><a href="/#/Events/DirectEvents/Overview/">DirectEvents</a></p>
<p><span>3</span><a href="/#/Events/DirectMethods/Overview/">DirectMethods</a></p>
</Content>
</ext:Container>
<ext:Container runat="server" Flex="1">
<Content>
<p><span>4</span><a href="/#/GridPanel/ArrayGrid/ArrayWithPaging/">GridPanel</a></p>
<p><span>5</span><a href="/#/ViewPort/Basic/Built_in_Markup/">ViewPort</a></p>
<p><span>6</span><a href="/#/XRender/Basic/Add_Items/">XRender</a></p>
</Content>
</ext:Container>
</Items>
</ext:Container>
</div>
</div>
</Content>
</ext:Container>
<ext:Container runat="server">
<Content>
<div id="welcome-grid">
<a href="/#/Getting_Started/Introduction/Component_Overview/" id="grid-badge">Component Overview</a>
<div id="screens"></div>
<div id="buttons">
<a href="/#/GridPanel/ArrayGrid/ArrayWithPaging/">GridPanel »</a>
<a href="/#/Desktop/Introduction/Overview/">Desktop »</a>
<a href="/#/Chart/Area/Basic/">Charts »</a>
<a href="/#/Portal/Basic/Deluxe/">Portal »</a>
<a href="/#/Calendar/Overview/Basic/">Calendar »</a>
</div>
</div>
</Content>
</ext:Container>
<ext:Container runat="server">
<Content>
<div id="welcome-footer">
<span>
<p>100+ Components and 300+ Samples for use in your ASP.NET WebForm and MVC Applications.</p>
</span>
</div>
</Content>
</ext:Container>
</Items>
</ext:Viewport>
</body>
</html>