4

我想在 ajaxToolkit:AjaxFileUpload 开始上传时发一条消息,有没有办法做到这一点

4

2 回答 2

4

默认情况下AjaxFileUpload没有这样的事件。但是由于 AjaxControlToolkit 是一个开源库,您可以自己添加它。从此页面下载最近的库源:source codes,找到 AjaxFileUpload 控制源(/Server/AjaxControlToolkit/AjaxFileUpload 文件夹)并将以下代码添加到 AjaxFileUpload.cs 文件中:

[DefaultValue("")]
[Category("Behavior")]
[ExtenderControlEvent]
[ClientPropertyName("uploadStarted")]
public string OnClientUploadStarted
{
    get
    {
        return (string)(ViewState["OnClientUploadStarted"] ?? string.Empty);
    }
    set
    {
        ViewState["OnClientUploadStarted"] = value;
    }
}

之后,修改AjaxFileUpload.pre.js文件:

// insert this code right after the _raiseUploadComplete method
add_uploadStarted: function (handler) {
    this.get_events().addHandler("uploadStarted", handler);
},

remove_uploadStarted: function (handler) {
    this.get_events().removeHandler("uploadStarted", handler);
},

_raiseUploadStarted: function () {
    var eh = this.get_events().getHandler("uploadStarted");
    if (eh) {
        eh(this, Sys.EventArgs.Empty);
    }
},

// modify the _doUpload method
_doUpload: function () {

    if (!this._filesInQueue.length || this._filesInQueue.length < 1)
        return;

    this._raiseUploadStarted();

    this._currentQueueIndex = -1;
    if (!this._isFileApiSupports)
        this._createIframe();

    this._processNextFile();
}

比构建解决方案并享受新功能。

于 2012-07-27T13:44:52.743 回答
0

在 AjaxControlToolkit 的当前版本(2013 年 12 月发布版本 7.1213)中,此事件可用,无需任何源代码修改。

http://ajaxcontroltoolkit.codeplex.com/SourceControl/latest#Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs

于 2014-01-17T18:31:49.743 回答