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