How to use CuteEditor with 3rd Party Uploader?

  •  05-22-2007, 5:33 AM

    How to use CuteEditor with 3rd Party Uploader?

    Hi...
     
    I have 2 web site. One has default asp.net uploader.
    The Other has 3rd Party Uploader.
     
    So, web.config are different.
     
    Same Source, The first one works fine.
    Second one(with 3rd Party Uploader), doesn't work.
     
    The Error Message is "Image is in the wrong format"
     
    So, I looked up "InsertImage.aspx",
    Line # 369 has error message.
     
        System.Drawing.Image img;
        try
        {
         img = System.Drawing.Image.FromStream(new System.IO.MemoryStream(data));
        }
        catch
        {
         return "Image is in the wrong format.";
        }
     
    How can I use CuteEditor with 3rd Party Uploader?

    Similiar Problem has occured on InsertFlash, InsertDocument.aspx.
    (Flash and Document Saved only 113Byte filesize, even though It's 100~200KB.)
     
    Plz, Help.
View Complete Thread