|
|
Browse by Tags
All Tags » FileUpload ajax uploader
-
I am getting error:
Server side exception, failed to upload xxxx.wmv
Debug Information:
System.UnauthorizedAccessException: Access to the path 'd:\inetpub\domain.net\www\UploaderTemp\uploading.3a99108b-fdb9-ed70-1459-4b50f820cc63.3a99108b-fdb9-ed70-1459-4b50f820cc63.resx' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String ...
-
How can I retrieve the original file location? I see the file name and size, but nothing about location. Is there any more information elsewhere?
Thanks!
-
I receive this error when I try to upload a certain image on my CrystalTech hosting account, it works fine on my local machine however.
Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed .
I've ...
-
It works fine when I am using IE - the browse file window appear when I click the ajax uploader button. Is it a known issue that a classic fileupload control appears after clicking the ajax uploader in Firefox, Opera and Safari?
-
Hi,
I tried using the OpenStream method in the uploadAttachments control (and yes I did look at your demo)
FROM THE DEMO SOURCE
foreach (AttachmentItem item in Attachments1.Items)
{
InsertMsg(item.FileName + '', '' + item.FileSize + '' bytes.'');
//Copies the uploaded file to a ...
-
This is what my code looks like (.aspx control decleration) <cutewebui:uploadattachments runat=''server'' id=''upload_attachments'' />
Protected Overloads Overrides Sub OnInit(ByVal e As System.EventArgs)
MyBase.OnInit(e)
AddHandler upload_attachments.FileUploaded, AddressOf upload_attachments_file_uploaded
End Sub
Private ...
|
|
|