Mercurial > pub > bltoolkit
comparison Demo/Silverlight/Client.Web/ClientTestPage.html @ 0:f990fcb411a9
Копия текущей версии из github
| author | cin |
|---|---|
| date | Thu, 27 Mar 2014 21:46:09 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:f990fcb411a9 |
|---|---|
| 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>Client</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="silverlightControlHost"> | |
| 61 <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"> | |
| 62 <param name="source" value="ClientBin/Client.xap"/> | |
| 63 <param name="onError" value="onSilverlightError" /> | |
| 64 <param name="background" value="white" /> | |
| 65 <param name="minRuntimeVersion" value="4.0.50401.0" /> | |
| 66 <param name="autoUpgrade" value="true" /> | |
| 67 <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50401.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="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div> | |
| 71 </form> | |
| 72 </body> | |
| 73 </html> |
