Search

You searched for the word(s): form
Showing page 54 of 300 (2,996 total posts) < 1 second(s)
  • Re: Where are files uploaded to?

    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.   ...
    Posted to ASP Uploader (Forum) by Kenneth on June 5, 2011
  • Re: Firefox 4 dialog blocked error

    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. ...
    Posted to ASP Uploader (Forum) by Kenneth on May 17, 2011
  • Re: need to insert values in database table

    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 ...
    Posted to PHP File Uploader (Forum) by Eric on March 21, 2011
  • Re: After File Upload page is automatic post.. which i dont want.. i

    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 ...
    Posted to ASP Uploader (Forum) by Eric on January 24, 2011
  • Re: change font size in textarea by css

    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'' ...
    Posted to Cute Editor for ASP (Forum) by Eric on August 26, 2010
  • Re: video insert problem in Internet Explorer 6

    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 ...
    Posted to Cute Editor for PHP (Forum) by craig_b on June 30, 2010
  • Re: How to resize "insert hyperlink" popup window?

    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 ...
    Posted to Cute Editor for .NET (Forum) by Adam on February 23, 2010
  • Re: When I fill the editor with MySQL data

    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 ...
    Posted to Cute Editor for PHP (Forum) by Adam on January 25, 2010
  • Re: removing spaces from filenames before saving to directory

    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) {    ...
    Posted to PHP File Uploader (Forum) by cutechat on November 16, 2009
  • Re: Redirect the user after the upload passing some variables

    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 ...
    Posted to PHP File Uploader (Forum) by cutechat on October 28, 2009
« First ... < Previous 52 53 54 55 56 Next > ... Last »