本文介绍了如何在uplodify中显示自定义消息..的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

脚本部分:

Script Part:

<script type="text/javascript">
        $(function () {
            $("#file_upload").uploadify({
                'swf': 'uploadify.swf',
                'uploader': 'Handler.ashx',
                'cancelImg': 'cancel.png',
                'buttonText': 'Browse Files',
                'fileDesc': 'Image Files',
                'fileExt': '*.jpg;*.jpeg;*.gif;*.png',
                'fileSizeLimit': '50KB',
                'auto': true,
                'progressData': 'percentage',
                'onUploadComplete': function (file) {
                    alert('The file ' + file.name + ' finished processing.');
                    $("#l1").text(file.name);
                    var path = "UploadFiles/" + file.name;
                    $("#img1").attr('src', path);
                },
                'onSelectError': function (fileObj) {
                    if (fileObj.size >= 90000) {
                        $("#msg").html(fileObj.name + " was not uploaded ");
                    }
                }
            });
        })





ASP代码:



ASP Code:

<img alt="" src="" id="img1"/><br />
<asp:Label ID="l1" runat="server" Text="Label">
<asp:FileUpload ID="file_upload" runat="server" />
<div id="msg"></div> 



有些文件没有添加到队列中。这个默认的警报消息即将来临。

我怎么能阻止这个消息并放下我的愿望消息?..


Some files were not added to the queue.This default alert message is coming.
how can i stop this message and put my desire message?..

推荐答案




这篇关于如何在uplodify中显示自定义消息..的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 11:58