How To Upload File In Silverlight Sample
Hi anirudha, Thank you for the nice suggestion! Unfortunately we currently do not have a Download control.
However, we created a sample application which I hope will suite your scenario. Here is a short description: - the RadUpload control is used to upload files; - there is a StackPanel next to the upload control where we append a HyperlinkButton for each successfully uploaded file; - The browser will take the necessary action for each link depending on the file type. Please give it a try and let me know if it solves your issue.


Regards, Ivan the Telerik team. Sorry to hijack this thread, but I just have a question in regards to the System.Windows.Browser.HtmlPage.Window.Navigate method. For most content types (.png,.jpg,.txt,.xml) are all support and will show not problem, but I have problem that my users like to be able to save using the RadUpload control and then be able to view excel files, word docs, and outlook email saves (.msg files) and I am wondering if you can pass a request header of the content type (i.e. Application/ms.outlook) into the Navigate method?
How To Upload File In Html
Or can a URI include the content type? Note: I don't mind if it shows in the browser or pops up a save for the users. Regards, Shaun Sharples. Hello Shaun Sharples, Now I got it.

How To Upload File In Dropbox
About the DoubleClick, one better approach for me is to keep the last click time in a field and when you encounter next click (mouse down) that is within 200ms from the lastClickedTime then you have DoubleClick. This way you don't need Timer and so much code and it works faster as well.
About the real problem - you can't do it with Navigate method, but I think that you can do this with JavaScript. You may call JS function in Silverlight, so the question is if you can use navigate in JS with content-type. Unfortunately I'm not JavaScript guru, so you'd best try it yourself. Please let me know if we can be of further help. Kind regards, Miro Miroslavov the Telerik team.
You can see that you have three buttons, 1.Choose File - to borwse the file using file upload dialog 2. Reset - to remove all selections of files 3. Upload - to upload the selected files into the server and one datagrid, to show the list of selected of files on the fly. Here is the screen shot for this and one progress bar to show the progress of the file uploading.
When ever you select the Choose file button, it will show the file browser dialog and you can select files from client file system. I have checked the individual file limit as 1MB. I have used the class file to store the file related informations.
For each file I have created one file class object and I added the file object to Arraylist. Here is the file class code.