Advanced Forum Search Results
-
Thanks, that sounds good. I'll give it a shot.
-
Thanks for the hint. However, I'd need to know how many visitors install Silverlight while visiting our site, not how many already have it installed.
-
Hello,
I'd like to measure the percentage of users, that visit our Silverlight web site, that have no Silverlight installed yet and install Silverlight after they saw our customized Silverlight installation experience. The "Silverlight installation conversion rate" so to speak. I need to know, how many users we loose because of the ...
-
Found the solution here: http://stackoverflow.com/questions/1139200/using-fjcore-to-encode-silverlight-writeablebitmap
-
I'm also interested in the answer to Tom's question (how to convert writeableBitmap to jpeg with FJCore). Any solutions so far?
-
Now that SL3 RTW is public, has anything changed due to the unreadable issue?
-
It seems like there is no problem with Silverlight, but some hackers trying to get unauthorized access to our web services caused exceptions that looked like there was no header sent from our Silverlight client.
-
I tried to verify the error with a test app, however there it seems to work. I'll do further investigations.
-
Hi,
the following code does not append a header to the http request, if Silverlight 3 Beta runs in a Safari on a Mac:
WebClient currentWebClient = new WebClient();
currentWebClient.Headers["somename"] = "somename;
currentWebClient.UploadStringAsync(new Uri(urlString), "POST", poxDataString);
It runs fine in ...
-
Simply replace
public partial class Page1 : Page
with
public partial class Page1 : System.Windows.Controls.Page
Best, Sebastian