|
Search
You searched for the word(s):
Showing page 34 of 231 (2,301 total posts)
< 1 second(s)
-
Hi,
The online demo is fixed too.
Please try again.
Regards,
Terry
-
Hi,
The problem is this
''Skype Extension installed.''
We are very sorry that the online sample is still not the newest one.
Let's update it now.
Regards,
Terry
-
Hi,
We have fixed it.
Please test the online demo again .
Regards,
Terry
-
Kal
after you use the GetUploadedFile to get a file object,
you can use FileGuid to get the xxxxxx-xxxx-xxxxxxx number string
use FileName the get the original name of the file
and use FilePath to get full path of the temp resx file.
Regards,
Terry
-
Hi,
That is strange.
Did you add this to limit the speed ?
<add key=''CuteWebUI.AjaxUploader.UploadSpeedKB'' value=''80'' />
,
I suggest you test the speed of a simple <input type=''file'' name=''file1'' />
Regards,
Terry
-
Hi,
You're right .
That demo is not good enough to how to use that control.
We will add a new button to show the 'current File' and let customers understand it.
Thanks.
Regards,
Terry
-
Hi,
Uploader alloc new GUID for each files.
You can get it at client side or server side.
at client side, you can get it via this way :
var hidden=document.getElementById(''UploaderID'');
var guidlist=hidden.value.split(''/'');
Regards,
Terry
-
Eric,
Please download the last version , and add this into web.config appSettings:
<add key=''CuteWebUI.AjaxUploader.ShowStackTrace'' value=''True'' />
That will show the error details.
Regards,
Terry
-
Hi,
If you specify the SaveDirectory , the temp file will move to SaveDirectory, and the GetUploadedFile will not work.
SaveDirectory is a very basic function. If you want to control the uploaded file, please do not use that property.
Please check other samples, the samples will tell you where you can handle the ...
-
Hi,
You can get the name of the file, but not the path.
Please try this sample code :
function CuteWebUI_AjaxUploader_OnSelect(files)
{
alert(files[0].FileName);
}
function CuteWebUI_AjaxUploader_OnQueueUI(files)
{
//files[0].FileName
}
Regards,
Terry
... 34 ...
|
|
|