CuteWebUI AJAX Uploader上傳控制項介紹

來源:互聯網
上載者:User

Web.config的配置

<httpModules>中添加

<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader" />

<assemblies>中添加

<add assembly="CuteWebUI.AjaxUploader, Version=3.0.0.0, Culture=neutral, PublicKeyToken=e28c4b74e4d86295" />

<controls>中添加

<add namespace="CuteWebUI" assembly="CuteWebUI.AjaxUploader, Version=3.0.0.0, Culture=neutral, PublicKeyToken=e28c4b74e4d86295" tagPrefix="CuteWebUI" />

將AjaxUploader.lic,放入dll的同一個目錄,否則會出現License file not found的問題。

使用

頁面使用的時候添加dll應用,在需要上傳附件的位置添加如下代碼:

<CuteWebUI:Uploader runat="server" ID="Uploader1">
    <VALIDATEOPTION MaxSizeKB="1000" />
</CuteWebUI:Uploader>

可以在<appSetting>中設定全域的最大大小

<add key="CuteWebUI.AjaxUploader.GlobalMaxSizeKB" value="1000"/>

後代代碼:

      foreach (CuteWebUI.AttachmentItem attach in this.Uploader1.Items)
                        {
                            if (attach.Checked)
                            {
                                Stream stream = attach.OpenStream();
                                stream.Position = 0;
                                byte[] buffer = new byte[stream.Length];
                                stream.Read(buffer, 0, (int)stream.Length);
                                listItem.Attachments.Add(attach.FileName, buffer);
                            }
                        }

/Files/ceci/Ajax-Uploader.zip

/Files/ceci/CuteWebUIAjaxUploaderDll-Cracked.zip

官方連結地址

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.