Advanced Forum Search Results
-
versionNumber should return a string for you.
-
Use this.
var plugin = navigator.plugins["Silverlight Plug-In"] ;
var versionNumber = plugin.description;
versionNumber should give you somoething like 1.0.30226.2 or 2.0.30226.2 depending on the version number you have. Let me know if this solves the problem for you.
Mark it as answered if it does.
-
Look at this incredible tutorial from Jesse Liberty.
http://silverlight.net/learn/tutorials/databinding.aspx
Also look at his video on how he did it.
http://silverlight.net/learn/learnvideo.aspx?video=56926
Mark it as answered if this helps.
-
Your code looks good. Remove the fileName = "../../" from the filename and use just images/Apr.jpg", since you are using Urikind.Relative. I believe that should work
-
Look at setting the culture attribute of the globalization element in the web.config file to auto. Also take a look at http://msdn.microsoft.com/en-us/library/hy4kkhe0.aspx for more info. Hope this helps.
-
You are on the right track, the web project should be your startup project. Do you have your C# code in Page.Xaml.cs page or you have it in a code behind file of the web project. I am thinking you have it in the Page.Xaml.cs, that's why you have it working. I would advise you move the images folder to the web project so it can see image ...
-
The framework is confused with which assembly to use. I think you might have added two references to your appliaction, Try to delete one of the references from your applocation that might contain that type. Let me know if this helps.
-
I am afraid it would not work because the application is not a Console application. Change the statement to the following and you should get an error letting you know that execution gets there.
MessageBox.Show("This is really cool");
-
Try Scott's tutorial on how to do this, Hope this helps.
http://weblogs.asp.net/scottgu/archive/2007/07/19/vs-2008-javascript-debugging.aspx