Re: Basic Evaluation Question

  •  08-28-2008, 9:55 AM

    Re: Basic Evaluation Question

    Mike,
     
    >>but I don't see any documentation in the trial download,
     
    You can find two document files in the document folder.
     
    a. Class reference
    b. Developer's guide
     
    >>I am uploading files, but to where? How do I specify the upload directory? 
     

     void Uploader_FileUploaded(object sender, UploaderEventArgs args)
        {
            Uploader uploader = (Uploader)sender;
            InsertMsg("File uploaded! " + args.FileName + ", " + args.FileSize + " bytes.");

            //Copys the uploaded file to a new location.
            //args.CopyTo("c:\\temp\\"+args.FileName);
            //You can also open the uploaded file's data stream.
            //System.IO.Stream data = args.OpenStream();
        }

     >>I see that if the file is too large, there is a warning message. 
     
    Can you post this warning message?
     
    >>- What's the difference between the  C Sharp Magic Ajax and C Sharp Microsoft Ajax demos?
     
    It's just the different ajax framework.
     
    >>-Is there documentation?
     
    Yes. Please see my first answer.
     
    Hope it helps.

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread