Perhaps the silverlight app always uses the Out of browser app if installed?

I have a Silverlight application (SL3) that is enabled for use from the browser. what i want to know if a user installs the app "from the browser" how to make my site always run the app from the browser instead of placing the silverlight app in the browser ... is it possible?

thank!

+2


source to share


2 answers


You cannot run the OOB version from your page, but you can remind the user that they have already installed it and force them to run the OOB version.



Tim Heyer covers it here

+2


source


Your site cannot run an installed OOB application, but you can programmatically install it by OOB using Application.Install (), which must be called from a user-initiated event (such as a button click).



0


source







All Articles