Latest News

  • Super Tower Defense 2 Game
    Sep 03, 2010

    New to the games section is Super Tower Defense 2. Featuring more maps, new units and bigger explosions.

  • Super Cards Online Multiplayer Game
    Aug 13, 2010

    Released today in the games section is the new Super Cards multiplayer card game. The aim of the game is to get rid of all your playing cards before your opposition.

  • Silverlight Online Chat
    Jul 24, 2010

    Today we launch the new Silverlight Live Chat application demonstrating the Liquid RichTextBox and Emoticon replacements.

  • New Super Shoot Em Up 2 Game
    Jun 29, 2010

    Added to the Games section is the new Super Shoot 'Em Up 2 game. Take control of your tank with the aim to defeat the computer controlled opponents. Features all new weapons, levels and Battle Mode!

  • Silverlight 4 Controls V5.3.2 Released
    Jun 28, 2010

    This release contains several fixes raised in the forums.

davidchiholi
davidchiholi
Silverlight Multiple File Upload/Explorer Demo Posted: Feb 23, 2010
 

Hi there,

I download the demo file. It works fine exact than when upload bigger size image in face it is only 6KB. I got partial image.

I saw one of your thread talks about uncommeting

WriteFile(filename, Convert.FromBase64String(filedata), FileMode.Append);


I did but still does not help because it does not called twice? Do I have to make some changes to web.config?


Thks.

 
 
dan
dan
RE: Silverlight Multiple File Upload/Explorer Demo Posted: Mar 06, 2010
 

Hi,


Indeed the web service provided with the demo limits the uploaded file size.  For this reason I have modifed the demo to write the whole file, you can download the updated demo code from the usual place.  If you want to implement the fix yourself navigate to line 193 of FileUploadService.cs and alter the line to:


int length = content.Length;


Thanks!