Search

You searched for the word(s): control
Showing page 12 of 101 (1,008 total posts) < 1 second(s)
  • Re: httpwebrequest usage

    Dear soppie,   Yes, you can check the filesize before file is uploaded, the following is example snippet:  <%@ Page Language=''C#'' %> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Transitional//EN'' ''http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd''> <script runat=''server''>     void ...
    Posted to Ajax Uploader (Forum) by Eric on December 22, 2010
  • Re: Getting client path of uploaded files serversided

    Hi,   We are not able to provide the path of the file, because Flash/Silverlight and some browser's <input> do not provide that information.   For client data, you can check this demo :     <%@ Page Language=''C#'' %> <%@ Import Namespace=''CuteWebUI'' %> <%@ Register TagPrefix=''CuteWebUI'' ...
    Posted to Ajax Uploader (Forum) by cutechat on October 19, 2010
  • Re: Code behind

    Joe,   You can add the uploader into your control at each page life cycle ,     Uploader up; protected override void OnInit(EventArgs args) {     base.OnInit(args);     up=new Uploader();     up.FileUploaded+=new UploaderEventHandler(up_FileUploaded);     ...
    Posted to Ajax Uploader (Forum) by cutechat on December 14, 2009
  • Re: Progress Template Line Break

    Hi swabygw,   If you set this properties in code behind, need use \r\n, like   UploadAttachments1.ProgressTextTemplate = ''line1 \r\n line2'';   If you set this properties in the control, need use &#13;&#10;, like below   <CuteWebUI:UploadAttachments runat=''server'' ID=''UploadAttachments1'' ...
    Posted to Ajax Uploader (Forum) by Kenneth on December 1, 2009
  • Re: Javascript calls.

    Mike,   The JavaScript API is here.   http://ajaxuploader.com/document/index.htm#page=JavaScript-API.htm   >>>I would like to be able to call the upload directly without clicking on the button your control renders. In Javascript? The Javascript events help from there.   I don't think it's possible to call the ...
    Posted to Ajax Uploader (Forum) by Adam on May 21, 2009
  • Re: Multiple File Uploaded Problem

    Scott:   Hi you may use this logic:   void Uploader_FileUploaded(...) {   int galleryid; object galleryidobj=ViewState[''MyGalleryID'']; if(galleryidobj==null) {     galleryid=CreateNewGallery();     ViewState[''MyGalleryID'']=galleryid; } else {     ...
    Posted to Ajax Uploader (Forum) by cutechat on February 13, 2009
  • Re: Custom feature development?

    Hi,   I can only answer the above questions, for further questions, please contact support@cutesoft.net   1. Only silverlight can implement the resume feature, but we haven't supported this feature yet.   2. Uploader now is an ASP.NET WebForm control, it is not for 'oustide-of-browser type'.  We will support MVC,PHP,JSP ...
    Posted to Ajax Uploader (Forum) by cutechat on February 3, 2009
  • Re: how to add required field validator to upload button

    Hi, Currently the Uploader can't not be applied the validation control.   while the uploader would do a postback to server after it upload a file,   You can send a flag to client side after the file are uploaded.   Or you can check our online sample ...
    Posted to Ajax Uploader (Forum) by cutechat on January 5, 2009
  • Re: Templating progress bar and buttons?

    Hi,   There are some properties on the control that can help you customize the buildin progress bar.   If you want to customize it completely , you need use script to write your own progress bar.   For example   <script> function ...
    Posted to Ajax Uploader (Forum) by cutechat on October 16, 2008
  • Re: Multiple Files

    Hi, The UploadAttachments provide a programming modal for management multiple files easily. The samples contains a forum example show how to use that control to create and edit the attachments of a thread. If do not use the UploadAttachments , developers need write many code to implement the same function. We had ...
    Posted to Ajax Uploader (Forum) by cutechat on May 14, 2008
« First ... < Previous 10 11 12 13 14 Next > ... Last »