Uploadify与ASP.Net而不是MVC一起使用

时间:2011-10-15 18:37:18

标签: jquery asp.net uploadify

我正在尝试使用Uploadify插件,并且可以正常上传和显示文件。

作为一个已知问题,由于闪存不支持会话,另一个事实是我们可以通过使用MVC来解决问题。

但我对MVC一无所知并试图使用正常的Asp.Net应用程序,我看过很多关于上面提到的上传文章的文章:

http://geekswithblogs.net/apopovsky/archive/2009/05/06/working-around-flash-cookie-bug-in-asp.net-mvc.aspx

http://techblog.edwardting.com/2011/05/20/multiple-file-upload-in-mvc-using-uploadify/

现在我需要使用Asp.Net应用程序。

我已经创建了一个全局aspx,如上一篇文章所述,现在任何人都可以详细解释我,这样我就需要创建一个会话ID并保存该Session Id中的所有文件,并需要使用Session Id检索回来在OnComplete事件中。

所以这是我的脚本代码:

  <script type="text/javascript">
    $(window).load(
function () {
    $("#fileInput1").uploadify({
        'uploader': 'scripts/uploadify.swf',
        'cancelImg': 'images/cancel.png',
        'buttonText': 'Browse Files',
        'script': 'UploadVB.ashx',
        'folder': 'uploads',
        'fileDesc': 'Image Files',
        'fileExt': '*.jpg;*.jpeg;*.gif;*.png',
        'queueSizeLimit': 9999,
        'simUploadLimit': 2,
        'sizeLimit': 4000000,
        'multi': true,
        'auto': true,
        'onComplete': function (event, queueID, fileObj, response, data) {
            $("#thumbnail").append(response)
        },

        'onError': function (event, ID, fileObj, errorObj) {
            alert(errorObj.type + ' Error: ' + errorObj.info);
        }


    });
}
);
</script>

这是我的处理程序代码:

 Dim savepath As String = ""
    Dim tempPath As String = ""
    tempPath = System.Configuration.ConfigurationManager.AppSettings("FolderPath")
    savepath = context.Server.MapPath(tempPath)
    Dim filename As String = postedFile.FileName
    If Not Directory.Exists(savepath) Then
        Directory.CreateDirectory(savepath)
    End If
    If Not Directory.Exists(savepath + "\thumbs") Then
        Directory.CreateDirectory(savepath + "\thumbs")
    End If


    postedFile.SaveAs((savepath & "\") + filename)
    Dim fullImage As System.Drawing.Image = New System.Drawing.Bitmap((savepath & "\") + filename)

    Dim newWidth As Integer = 100
    Dim newHeight As Integer = 80

    Dim temp As New Bitmap(newWidth, newHeight)
    Dim newImage As Graphics = Graphics.FromImage(temp)
    newImage.DrawImage(fullImage, 0, 0, newWidth, newHeight)
    temp.Save((savepath + "\thumbs" & "\") + "t_" + filename)

    context.Response.Write("<a href='" + (tempPath & "/") + filename + "'><img src='" + tempPath + "/thumbs" & "/" + "t_" + filename + "'/></a>")
    context.Response.StatusCode = 200

0 个答案:

没有答案