It is possibal to use Silverlight in dot net framework 2.0 and vs 2005 ?
It is possibal to use Silverlight in dot net framework 2.0 and vs 2005 ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jiteendra SampathiraoPosted Nov 29, 2010, 7:15 AM
You can use silverlight with Framework 2.0 and VS 2005. By using Javascript you can use Silverlight. It is similar to how we add Adobe Flash content.
function createSilverlight()
{
Silverlight.createObjectEx({
source: 'Info.xaml',
parentElement: document.getElementById('SilverlightPlugInHost'),
id: 'SilverlightPlugIn',
properties: {
width: '400',
height: '300',
background:'#ffffffff',
isWindowless: 'false',
version: '1.0'
},
events: {
onError: null,
}
});
}
-----------------------------------------
===============================================================================
If this post helped you, then tick the "Do you like this Answer" checkbox which is placed at above this post.