-
Hi, Please try method #2 or #3 from this page: http://docs.componentart.com/default.aspx?content=ComponentArt.Web.UI.Silverlight/Upload_QuickStart.htm Use of the asp:Silverlight control in the System.Web.Silverlight assembly is deprecated. Thanks, Jeremy
-
Hi, you can send the modified filename back to the client in the Tag property. On the server: private void Upload1_OnUploaded( object sender, ComponentArt.Silverlight.Server.SilverlightUpload.UploadUploadedEventArgs args) { foreach (ComponentArt.Silverlight.Server.UploadedFileInfo oInfo in args.UploadedFiles) { oInfo.Tag = " MyNewFileName.ext "; oInfo.SaveAs(Path.Combine(Server.MapPath(SilverlightUpload1.DestinationFolder), " MyNewFileName.ext "), SilverlightUpload1.OverwriteExistingFiles...
-
Hi, i kept the single file upload control in usercontrol and loading it multiple times based on the xml file. If i load only once its working file. But when i given 2 in the xml file it loads twice and can't able to find upload progress and even unable to upload file also for second browse one. I think this is cause of script where we are giving control id directly,I cna't change the anchor tag for upload to "runat = server" . Is there any way to change the script files to make...
-
When I tried to upload any file using file upload control, it was throwing following error on page: ---------------------------------------------------- XML Parsing Error: no element found Location: http://192.168.101.136:9000/myPage.aspx?CartUploadId=f5bd0067-b99b-4ada-87ba-5df1284c64b7 Line Number 1, Column 1: ----------------------------------------------------- Following setting has been applied in web.config file for file upload control. -----------------------------------------------------...
-
When I tried to upload any file using file upload control, it was throwing following error on page: ---------------------------------------------------- XML Parsing Error: no element found Location: http://192.168.101.136:9000/Portal.aspx?CartUploadId=f5bd0067-b99b-4ada-87ba-5df1284c64b7 Line Number 1, Column 1: ----------------------------------------------------- Following setting has been applied in web.config file for file upload control. -----------------------------------------------------...
-
Which browsers is this upload control supposed to support at current version? I couldn't find this piece of information in the documentation. When I tested it in different browsers, IE and Firefox uploaded successfully but Safari, Opera and Google Chrome failed. (all these browsers are windows 32bit) Online demo gave me the same result.
-
Hi, this bug is fixed in the 2009.2 release.
-
Hi,
I have verified this bug and we are working on a solution to it.
Thank you for your patience.
-
Any news on this. It's gone awfully quiet. I've still got this problem and I'm still having to get round it by using my adapted Codeplex uploader instead - despite my employer having paid for a UI Framework 2009.1 licence!
-
I gave both NETWORK SERVICE and Everyone write permission. The 'uploaded' files do not appear in my uploads directory (I set both TempFileFolder="~/uploads" and DestinationFolder="~/uploads"). Setting DebugMode on the web control has no effect at all. Here's my aspx page code: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CAUploaderTestPage.aspx.cs" Inherits="CAUploader.Web.CAUploaderTestPage" %> <...