This question is locked. New answers and comments are not allowed.
Hi to all,
I have a SL4 project with web project, on debug by VS2010 all are ok.
After deploy into IIS (of another server, but in domain), I try to upload a file by site deployed, show me an error "Error:NOt Found,Check radupload's buffersize property remarke..."
This is in markup language:
I added on web.config security folder, I created UploadHandler.ashx and TempUpload folder.
I have a SL4 project with web project, on debug by VS2010 all are ok.
After deploy into IIS (of another server, but in domain), I try to upload a file by site deployed, show me an error "Error:NOt Found,Check radupload's buffersize property remarke..."
This is in markup language:
<telerik:RadUpload Grid.Row="1" HorizontalAlignment="Left" x:Name="UploadAttaches" MaxFileCount="3" MaxFileSize="3000000" OverwriteExistingFiles="True" UploadServiceUrl="/Security/UploadHandler.ashx" IsDeleteEnabled="True" BufferSize="250000" MaxUploadSize="3000000" IsMultiselect="True" IsAppendFilesEnabled="True" TargetFolder="/Security/TempUpload" FilesSelected="UploadAttaches_FilesSelected" FileUploaded="UploadAttaches_FileUploaded" FileUploadStarting="UploadAttaches_FileUploadStarting" />I added on web.config security folder, I created UploadHandler.ashx and TempUpload folder.
<system.web> <sessionState timeout="480"/> <httpRuntime maxRequestLength="3000000" executionTimeout="3600" /><......>