forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.cshtml
More file actions
37 lines (31 loc) · 1.19 KB
/
Index.cshtml
File metadata and controls
37 lines (31 loc) · 1.19 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
@{
Layout = null;
this.Session["Ext.Net.Theme"] = Ext.Net.Theme.Gray;
}
<!DOCTYPE html>
<html>
<head>
<title>Ext.NET MVC Examples - Open Source ASP.NET Web Controls with Sencha Ext JS</title>
<link rel="stylesheet" href="@Url.Content("~/resources/css/main.css")" />
<script src="@Url.Content("resources/js/main.js")"></script>
</head>
<body>
@Html.X().ResourceManager()
@Html.X().History().Listeners(l => l.Change.Fn = "change")
@RenderPage("~/Views/Main/_ViewPort.cshtml")
@*this form is required for example downloading*@
<form id="downloadForm" class="x-hidden"></form>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19135912-3']);
_gaq.push(['_setDomainName', '.ext.net']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setAllowHash', false]);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>