|
Search
You searched for the word(s):
Showing page 52 of 231 (2,301 total posts)
< 1 second(s)
-
Hi,
If you just want to add an existing item , I suggest you check the advanced sample , the EditTopic.aspx sample , which allow you add an 'custom' item without copying the data.
(implementing the CuteWebUI.IAttachmentProvider and use AddCustomAttachment method)
Regards,
Terry
-
Hi,
Uploader is a tool to help you upload files.
When the file is uploaded , the uploader will save the file to temp folder at first.
And the name of the file is also a temp name.
You need write code to move the file to your target location , and than maintain it by yourself.
Please check the sample , ...
-
Michael,
You do not need take care the temp files.
Temp file means the uploaded data & info of a file. it's owned by uploader , not your application.
You do not need care what's the filename and why the name ends with '.resx'
What you need to do is , in some event handler , move the file to some where you ...
-
Hi,
Currently you can get avoid of the message by this way :
<script>
function CuteWebUI_AjaxUploader_OnError(msg)
{
if(msg.indexOf(''transfer expired'')!=-1)
return ...
-
Ankita ,
Please try another PCs. Most of the PCs should be fine.
If some PCs work , please try to find the difference.
Regards,
Terry
-
Please post the error message.
Regards,
Terry
-
Hi,
Did you change any code of you application?
For example , did you add http modules or change server side configuration ?
The error code maybe caused by server closing the tcp connection and Flash can't get server side error message.
So maybe you can find something in server event ...
-
Hi,
You can specify the uploader provider to upload the temp file to database.
Here is the configuration and source code. You can modify it or create your own provider :
Web.config :
<add key=''CuteWebUI.AjaxUploader.UseAspNetStream'' value=''True''/>
<add key=''CuteWebUI.AjaxUploader.Provider'' ...
-
Aldrich,
Yes, please send the pdf file to me.
terry @ cutesoft.net
I can't reproduce that using my pdf
http://ajaxuploader.com/Demo/simple-upload.aspx
Regards,
Terry
-
Jim
Hi, when the file have been uploaded , you can rename the file .
In the examples , you can find the comments where you can handle the logic.
For example , in example form-singlefile.php ,
you can move the file by this way :
if($mvcfile)
{
...
... 52 ...
|
|
|