|
Search
You searched for the word(s): form
Showing page 54 of 300 (2,996 total posts)
< 1 second(s)
-
Hi KJG, Tow ways. 1. Set property SaveDirectory. And than the upload file will save into the folder you set. uploader.SaveDirectory=''savefiles'' 2. Use function ''CopyTo'' or ''MoveTo'' to save the upload files. 'Copys the uploaded file to a new location. ...
-
Hi dankrause, Can you reproduce this issue on http://aspuploader.com/demo/form-multiplefiles.asp? If the online demo works for you, please download the latest version and try again. Latest version downloads http://www.cutesoft.net/downloads/folders/57265/download.aspx If you still get the same issue of the latest version. ...
-
Dear sheik1412,
Please refer to the following two files, if you save these two files, you will can run ajax-multiplefiles.php directly, this example demonstrates how to pass parameter between php uploader and its handler:
Ajax-multiplefiles.php:
<?php require_once ''phpuploader/include_phpuploader.php'' ?>
<?php ...
-
Dear appliquertech,
ASP Uploader need to transfer the upload files to the server, so the postback is necessary.
If you just want to prevent it, you can try the code below
<script>
function CuteWebUI_AjaxUploader_OnPostback()
{
return false;
}
</script>
If you want to submit the page after all ...
-
Please use the following code:
<%
Dim editor
Set editor = New CuteEditor
editor.ID = ''Editor1''
editor.EditorBodyStyle=''font-family: Verdana;font-size=25;''
If request.QueryString(''postback'') <> ''true'' ...
-
I'm experiencing the same problem when using the 'insert media' button, although for me the problem only occurs with IE6 -- but it does affect all video file types, not just MPEG.
I've found that when using Cute Editor in IE6, sometimes the necessary <param> tags are generated by Cute Editor, but sometimes they are not ...
-
drekos:
I have removed some fields and tabs from the ''insert hyperlink'' modal window, and I can't seem to resize the window that pops up. It is way too big for the amount of fields on the form. I couldn't find any settings to let me fix this. Could you point me to the right place?
You can resize the insert hyperlink window ...
-
Please use the Text property.
Editor.Text Property
This property provides access to the text within the editable area of the CuteEditor control. It can be used to set the text when the control is first displayed and also to read out the text when a form has been submitted.
Example Code ...
-
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)
{
...
-
Hi,
When uploader finish uploading files to temp directory , it will fire the JavaScript event OnPostback
You can write function to handle this event :
function CuteWebUI_AjaxUploader_OnPostback()
{
}
In this function , you can submit a form for redirect at server side , or redirect to another page using ...
... 54 ...
|
|
|