Search

You searched for the word(s):
Showing page 178 of 231 (2,301 total posts) < 1 second(s)
  • Re: In .Net 1.1 Your Demo seems do not work during a PostBack

    Hi, &nbsp; For the UploadPersistedFile and the UploadAttachments , they will persist the files for only 1 hour. &nbsp; If one hour have passed , the temporary files would be deleted. &nbsp; &nbsp; Another condition is that the temporary files&nbsp;be deleted at server by unknown reasons . &nbsp; &nbsp; Whatever reason the files be ...
    Posted to Ajax Uploader (Forum) by cutechat on October 6, 2008
  • Re: Hide browse button for UploadPersistedFile control

    Hi &nbsp; Can you show all the HTML code ? &nbsp; &nbsp; the ''editButton'' must be a server control , otherwise uploader control would ignore that property if ''editButton'' not found at server side. &nbsp; So do other XxxID properites. &nbsp; &nbsp; Regards , Terry .
    Posted to Ajax Uploader (Forum) by cutechat on October 4, 2008
  • Re: The process cannot access the file 'xxx' because it is being used by another process.

    Hi msalti, &nbsp; That is strange. Could you try it again for this code ? &nbsp; using (Stream stream = args.OpenStream()) { &nbsp; } &nbsp; ----- &nbsp; Ajax Uploader is trying to delete the temporary file when the uploaded&nbsp;event is finished. &nbsp; It should be OK when the stream is disposed. &nbsp; If the error still ...
    Posted to Ajax Uploader (Forum) by cutechat on October 1, 2008
  • Re: Max File Size?

    Keith, &nbsp; &nbsp; Hi, &nbsp; MaxSizeKB is a property that be used for restricting the file size. If you do not want to limit the file size , please do not set it. &nbsp; And MaxSizeKB do not mean your server ability when you set it larger. &nbsp; If the uploader report file is too large , maybe because ASP.NET restrict ...
    Posted to Ajax Uploader (Forum) by cutechat on September 18, 2008
  • Re: Limit Number of Uploads

    Dennis Gilgallon, &nbsp; Hi, &nbsp; Currently the Uploader do not support this feature directly. &nbsp; You can use the ctrl.InsertButtonID=''MyCustomButton'' to implement your request. &nbsp; (Please check the customize UI demo) &nbsp; at the OnPreRender event , you can check the count and disable the MyCustomButton like this way ...
    Posted to Ajax Uploader (Forum) by cutechat on August 29, 2008
  • Re: "REMOVE" item detection

    Hi, &nbsp; Currently we did not provide the remove event for that yet. &nbsp; You can check the items to find the removed item : &nbsp; foreach(AttachmentItem item in control1.Items) { &nbsp;&nbsp;&nbsp; if( !item.Checked &amp;&amp; !item.Visible ) &nbsp;&nbsp;&nbsp;&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //this item is ...
    Posted to Ajax Uploader (Forum) by cutechat on August 28, 2008
  • Re: Ajax Uploader Security

    Hi Aaron, &nbsp; &nbsp; If you want to add more security check for the file, &nbsp; You can use the FileValidating event. &nbsp; when the FileValidating fired , that means the file is just uploaded and prepair to fire the FileUploaded. &nbsp; So you can check more thing there, by using the HttpContext or other controls (for example, the ...
    Posted to Ajax Uploader (Forum) by cutechat on July 29, 2008
  • Re: the Cute editor flickering in a modalpopup extender.. how can I solve this?

    Hi, &nbsp; Now we consider that the Editor script get error in that condition. &nbsp; We need test more and find the deep reason. &nbsp; &nbsp; Regards , Terry .
    Posted to Cute Editor for .NET (Forum) by cutechat on July 29, 2008
  • Re: How do I select multiple files?

    Hi, &nbsp; We use the IE &lt;input type=file&gt; to implement the uploading. &nbsp; So currently the control only support select 1 file at once. &nbsp; But we have a new idea to support upload multiple files for the UploadAttachments in the future. &nbsp; Regards , Terry .
    Posted to Ajax Uploader (Forum) by cutechat on July 29, 2008
  • Re: "attach" a file from code

    Hi, &nbsp; &nbsp; Please check the samples. &nbsp; In the advanced samples&nbsp;, it has a forum sample. &nbsp; It allow the user create a topic, and edit a topic. &nbsp; The sample is&nbsp;very close to your request. &nbsp; So please check the EditTopic.aspx &nbsp; &nbsp; You need create an IAttachmentProvider , &nbsp; Set the ...
    Posted to Ajax Uploader (Forum) by cutechat on July 29, 2008