Advanced Forum Search Results
-
Yeah they moved it from SL3 beta to SL3 release.
-
To make it a little cleaner I ended up changing it to:
<param name="InitParams" value="<%=InitParams %>" />
And then in the code-behind:protected void Page_Load(object sender, EventArgs e)
{if (!Page.IsPostBack)
{
//pass user data to silverlight control.
string urlReferrer = Request.UrlReferrer != null ? ...
-
Like many of the rest of you, I just upgraded a couple of my Silverlight 3 apps from the beta to the release. I noticed that one of my apps in particular is much slower now than it was with the beta. I haven't had time to look into what exactly is slower yet.
Are any of you experiencing sluggishness in your apps after upgrading?
-
This resolved it for me as well...
-
Thanks that worked.
-
You're right, when I copied the object tag code into my project to replace the obsolete System.Web.Silverlight control, I accidentally copied the silverlightControlHost div as well. Removing it or setting its height to 100% resolves the issue in FireFox. Thanks!
-
Now that Silverlight 3 is released and we can't use the ASP.NET Silverlight control (System.Web.Silverlight was removed), how do we pass our initparameters to our Silverlight app? Before I would do this:
//pass user data to silverlight control.string urlReferrer = Request.UrlReferrer != null ? Request.UrlReferrer.ToString() : ...
-
With Silverlight 3 just being released, I went ahead and tested my personal site (http://tothsolutions.com) in all the major browsers real quickly. It ended up working ok in IE, Safari, Opera, and Chrome. Surprisingly it didn't work in FF3. I was wondering if any of you have experienced this as well? This is a big deal ...
-
Thanks, I must've uninstalled/installed things in the wrong order...
-
I'm trying to upgrade a couple of my apps from SL3 beta to the SL3 release. I uninstalled the SL3 beta SDK and installed the SL3 release tools found here. On the Get Started page, it talks about getting not just the tools but the SDK and the VS project templates *if you don't have visual studio* by using the Web Platform installer. However ...