annotate OverlapStackPanelDemo/OverlapStackPanelDemo.Web/index.html @ 121:8f94475d3146 tip

final code
author stevenh7776
date Thu, 31 May 2012 15:35:26 +0100
parents 48c389520e5d
children
rev   line source
120
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml" >
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
3
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
4 <head>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
5 <title>OverlapStackPanelDemo</title>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
6 <style type="text/css">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
7 html, body {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
8 height: 100%;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
9 overflow: auto;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
10 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
11 body {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
12 padding: 0;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
13 margin: 0;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
14 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
15 #silverlightControlHost {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
16 height: 100%;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
17 text-align:center;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
18 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
19 </style>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
20 <script type="text/javascript" src="Silverlight.js"></script>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
21 <script type="text/javascript">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
22 function onSilverlightError(sender, args) {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
23 var appSource = "";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
24 if (sender != null && sender != 0) {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
25 appSource = sender.getHost().Source;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
26 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
27
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
28 var errorType = args.ErrorType;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
29 var iErrorCode = args.ErrorCode;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
30
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
31 if (errorType == "ImageError" || errorType == "MediaError") {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
32 return;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
33 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
34
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
35 var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n" ;
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
36
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
37 errMsg += "Code: "+ iErrorCode + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
38 errMsg += "Category: " + errorType + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
39 errMsg += "Message: " + args.ErrorMessage + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
40
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
41 if (errorType == "ParserError") {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
42 errMsg += "File: " + args.xamlFile + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
43 errMsg += "Line: " + args.lineNumber + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
44 errMsg += "Position: " + args.charPosition + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
45 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
46 else if (errorType == "RuntimeError") {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
47 if (args.lineNumber != 0) {
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
48 errMsg += "Line: " + args.lineNumber + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
49 errMsg += "Position: " + args.charPosition + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
50 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
51 errMsg += "MethodName: " + args.methodName + " \n";
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
52 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
53
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
54 throw new Error(errMsg);
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
55 }
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
56 </script>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
57 </head>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
58 <body>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
59 <form id="form1" runat="server" style="height:100%">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
60 <div id="silverlightControlHost">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
61 <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
62 <param name="source" value="ClientBin/OverlapStackPanelDemo.xap"/>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
63 <param name="onError" value="onSilverlightError" />
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
64 <param name="background" value="white" />
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
65 <param name="minRuntimeVersion" value="4.0.50826.0" />
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
66 <param name="autoUpgrade" value="true" />
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
67 <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none">
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
68 <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
69 </a>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
70 </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
71 </form>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
72 </body>
48c389520e5d initial commit
stevenh7776
parents:
diff changeset
73 </html>