//上传页面

 

代码
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SwfuploadSample.aspx.cs"
    Inherits
="WebApp.SwfuploadSample" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    
<title></title>
    
<style type="text/css">
        .Userupload
        
{
            float
: left;
            list-style
: none;
            padding-left
: 310px;
        
}
        .Userupload li
        
{
            color
: #666666;
            display
: block;
            text-align
: left;
            vertical-align
: middle;
        
}
    
</style>

    
<script type="text/javascript" src="/jquery/jquery.js"></script>

    
<script type="text/javascript" src="/swfupload/js/swfupload.js"></script>

    
<script type="text/javascript" src="/swfupload/js/handlers.js" charset="gb2312"></script>

    
<script type="text/javascript">
        
var swfu;
        $(
"#divAdd").ready(function() {
            
var fileLmt = parseInt('<%= System.Configuration.ConfigurationManager.AppSettings["FileSize"]%>');
            
if (fileLmt > 1024)
                fileLmt 
= parseInt(fileLmt / 1024);
            
else
                fileLmt 
= 1;

            $(
"#lblFileSize").html(fileLmt);
            swfu 
= new SWFUpload({
                
// Backend Settings
                upload_url: "/swfupload/handler/uploadHandler.aspx",
                post_params: {
                    
"ASPSESSID""<%=Session.SessionID %>",
                    
"AUTHID""<%=ClientAUTHID%>"
                },

                
// File Upload Settings
                file_size_limit: fileLmt + " MB",
                file_types: 
"*.jpg;*.gif;*.bmp;*.png;",
                file_types_description: 
"JPG Images",
                file_upload_limit: 
1,    // Zero means unlimited

                
// Event Handler Settings - these functions as defined in Handlers.js
                //  The handlers are not part of SWFUpload but are part of my website and control how
                //  my website reacts to the SWFUpload events.
                file_queued_handler: fileQueued,    //选择过文件后,把文件放入队列后,所触发的事件
                file_queue_error_handler: fileQueueError,
                file_dialog_complete_handler: fileDialogComplete,
                upload_progress_handler: uploadProgress,
                upload_error_handler: uploadError,
                upload_success_handler: uploadSuccess,
                upload_complete_handler: uploadComplete,

                
// Button settings
                button_image_url: "/swfupload/images/addimg.png",
                button_placeholder_id: 
"selectImg",
                button_width: 
56,
                button_height: 
27,
                button_text_style: 
"color: #000000; font-size: 10pt;",

                
// Flash Settings
                flash_url: "/swfupload/swfupload.swf"// Relative to this file

                custom_settings: {
                    upload_target: 
"divFileProgressContainer"
                },

                
// Debug Settings
                debug: false
            });
        });

        
function UploadImg() {
            
var check = jQuery.formValidator.pageIsValid();
            
if (check) {
                
var lnk = $("#aSubmit")[0];
                lnk.disabled 
= true;
                lnk.removeAttribute(
'href');
                $(
"form:first").submit();
            }
        }

        
function GotoAddPage() {
            location.href 
= "/addphoto.html";
        }

        
function uploadSuccess(file, serverData) {
            
try {
                addImage(
"/swfupload/handler/thumbnailHandler.aspx?id=" + serverData);

                
var progress = new FileProgress(file, this.customSettings.upload_target);

                progress.setStatus(
"ThumbnailFile Created.");
                progress.toggleCancel(
false);
                $(
"#<%=hfPhotoId.ClientID %>").val(serverData);

            } 
catch (ex) {
                
this.debug(ex);
            }
        }

        
function addImage(src) {
            
var imgCache = new Image(150150);
            imgCache.src 
= src;
            $(
"#liImgShow").append(imgCache);
        }
    
</script>

</head>
<body>
    
<form id="form1" runat="server">
    
<div class="AlbumContent" id="divAdd" style="min-height: 500px;">
        
<!--专辑选择-->
        
<div class="AlbumUpLoadType">
            
<span style="float: left">所属专辑:</span><span style="float: left; margin-left: 5px;">
                
<asp:DropDownList ID="ddlAlbumList" runat="server" CssClass="AlbumUpLoadTypeDrop">
                
</asp:DropDownList>
            
</span><span style="float: left; width: 100px; display: inline; display: block;">[<a
                
href="javascript:MaskDialog.show();">创建新专辑</a>]</span>
        
</div>
        
<div class="AlbumUpLoadType">
            照片名称:
<input id="photoname" name="photoname" type="text" style="border: 1px solid #7F9DB9;" /><span
                
id="photonameTip"></span></div>
        
<!--上传控件-->
        
<div id="divUploadBody">
            
<ul class="Userupload">
                
<li>
                    
<div style="height: 20px;">
                        请选择图片,文件小于
<label id="lblFileSize"></label>M
                        
<label id="lblPhotoCnt">
                        
</label>
                    
</div>
                
</li>
                
<li style="padding-top: 10px; padding-left: 10px;"><span id="selectImg"></span><span
                    
id="<%=hfPhotoId.ClientID %>Tip"></span>
                    
<br />
                    
<div id="divFileProgressContainer">
                    
</div>
                    
<div id="thumbnails">
                    
</div>
                
</li>
                
<li style="padding-top: 10px;" id="liImgShow"></li>
                
<li style="padding-top: 10px;">
                    
<div class="AlbumButtBg" style="margin: auto; float: none;">
                        
<input id="aSubmit" class="buttonUpSmall" value="上传图片" onmousedown="this.className='buttonDownSmall';"
                            onmouseup
="this.className='buttonUpSmall';" type="button" onclick="javascript:UploadImg();" />
                    
</div>
                
</li>
            
</ul>
        
</div>
        
<input type="hidden" id="hfPhotoId" runat="server" />
        
<div class="c">
        
</div>
    
</div>
    
</form>
</body>
</html>

 

代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApp {

    
public partial class SwfuploadSample : System.Web.UI.Page {
        
public string ClientAUTHID {
            
get {
                
string strAuthid = "";
                
if (Request.Cookies[System.Web.Security.FormsAuthentication.FormsCookieName] != null) {
                    strAuthid 
= Request.Cookies[System.Web.Security.FormsAuthentication.FormsCookieName].Value;
                }
                
return strAuthid;
            }
        }

        
protected void Page_Load(object sender, EventArgs e) {
            
        }
    }
}

 //缩略图类

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebApp.swfupload.handler
{
    
public class ThumbnailFile
    {
        
public ThumbnailFile(string id, byte[] data)
        {
            
this.ID = id;
            
this.Data = data;
        }

        
private string id;
        
public string ID
        {
            
get
            {
                
return this.id;
            }
            
set
            {
                
this.id = value;
            }
        }

        
public int width { getset; }
        
public int height { getset; }

        
private string filename;
        
public string FileName
        {
            
get
            {
                
return filename;
            }
            
set
            {
                filename 
= value;
            }
        }

        
private byte[] thumbnail_data;
        
public byte[] Data
        {
            
get
            {
                
return this.thumbnail_data;
            }
            
set
            {
                
this.thumbnail_data = value;
            }
        }
    }
}


using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;

namespace WebApp.swfupload.handler
{
    
public partial class ThumbnailHandler : System.Web.UI.Page
    {
        
protected void Page_Load(object sender, EventArgs e)
        {
            
string file_id = Request.QueryString["id"as string;
            
if (file_id == null)
            {
                Response.StatusCode 
= 404;
                Response.Write(
"Not Found");
                Response.End();
                
return;
            }

            List
<ThumbnailFile> thumbnails = Session["file_info"as List<ThumbnailFile>;

            
if (thumbnails == null)
            {
                Response.StatusCode 
= 404;
                Response.Write(
"Not Found");
                Response.End();
                
return;
            }

            
foreach (ThumbnailFile thumb in thumbnails)
            {
                
if (thumb.ID == file_id)
                {
                    Response.ContentType 
= "image/jpeg";
                    Response.BinaryWrite(thumb.Data);
                    Response.End();
                    
return;
                }
            }

            
// If we reach here then we didn't find the file id so return 404
            Response.StatusCode = 404;
            Response.Write(
"Not Found");
            Response.End();
        }
    }
}
 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
  • 2021-05-08
猜你喜欢
  • 2021-08-22
  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2021-07-23
相关资源
相似解决方案