Skip to main content

Microsoft Silverlight

Answered Question Home Page for Silverlight Application.RSS Feed

(0)

Furukoo
Furukoo

Member

Member

3 points

14 Posts

Home Page for Silverlight Application.

Hello ... I try to developp game application on www.furukoo.fr

Have you some sample of Home page (html code) for Silverlight Application ?

Many peoples comes on my same site, but don't enter on the site.

Perhaps, they think they are nothing to see ?

I want to clarify the home page for helping persons.

I need suggest and or html code sample for building one better home page.

Give me link of sample home page.

 

Thanks a lot

Yvan

www.furukoo.fr

Ardman
Ardman

Contributor

Contributor

3344 points

926 Posts

Re: Home Page for Silverlight Application.

This is the HTML from the Business Application Silverlight project.

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

<head>
    <title>BusinessApplication1</title>
    <style type="text/css">
    html, body {
        height: 100%;
        overflow: auto;
    }
    body {
        padding: 0;
        margin: 0;
    }
    #silverlightControlHost {
        height: 100%;
        text-align:center;
    }
    </style>
    <script type="text/javascript" src="Silverlight.js"></script>
    <script type="text/javascript">
        function onSilverlightError(sender, args) {
            var appSource = "";
            if (sender != null && sender != 0) {
                appSource = sender.getHost().Source;
            }

            var errorType = args.ErrorType;
            var iErrorCode = args.ErrorCode;

            if (errorType == "ImageError" || errorType == "MediaError") {
                return;
            }

            var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n";

            errMsg += "Code: " + iErrorCode + "    \n";
            errMsg += "Category: " + errorType + "       \n";
            errMsg += "Message: " + args.ErrorMessage + "     \n";

            if (errorType == "ParserError") {
                errMsg += "File: " + args.xamlFile + "     \n";
                errMsg += "Line: " + args.lineNumber + "     \n";
                errMsg += "Position: " + args.charPosition + "     \n";
            }
            else if (errorType == "RuntimeError") {
                if (args.lineNumber != 0) {
                    errMsg += "Line: " + args.lineNumber + "     \n";
                    errMsg += "Position: " + args.charPosition + "     \n";
                }
                errMsg += "MethodName: " + args.methodName + "     \n";
            }

            throw new Error(errMsg);
        }
    </script>
</head>
<body>
    <form id="form1" runat="server" style="height:100%">
    <div id="silverlightControlHost">
        <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
          <param name="source" value="ClientBin/BusinessApplication1.xap"/>
          <param name="onError" value="onSilverlightError" />
          <param name="background" value="white" />
          <param name="minRuntimeVersion" value="3.0.40624.0" />
          <param name="autoUpgrade" value="true" />
          <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40624.0" style="text-decoration:none">
               <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
          </a>
        </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
    </form>
</body>
</html>

Furukoo
Furukoo

Member

Member

3 points

14 Posts

Re: Home Page for Silverlight Application.

I try this way .. it seem working

- -

Furukoo

Ce site nécessite l'installation de Silverlight pour fonctionner

You must install Silverlight

www.furukoo.fr

Furukoo
Furukoo

Member

Member

3 points

14 Posts

Answered Question

Re: Home Page for Silverlight Application.

Y have found one solution .

On the TestPage.html add one object <object data="http://www.furukoo.fr/furukoo/htm/nosl.htm" type="text/html" width="100%" height="100%"></object> then display content of the nosl.htm page !

 

Try it !

<div id="silverlightControlHost">

 <object data="data:application/x-silverlight," type="application/x-silverlight-2"

width="100%" height="100%">

<param name="source" value="Furukoo.xap" />

<param name="onerror" value="onSilverlightError" />

<param name="background" value="white" />

<param name="minRuntimeVersion" value="2.0.31005.0" />

<param name="autoUpgrade" value="true" />

<object data="http://www.furukoo.fr/furukoo/htm/nosl.htm" type="text/html" width="100%" height="100%"></object>

</object>

<iframe style='visibility: hidden; height: 0; width: 0; border: 0px'></iframe>

</div>
 

 

www.furukoo.fr
  • Unanswered Question
  • Answered Question
  • Announcement
Microsoft Communities