• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

画情画心画影

--寒冬玉
  • 博客园
  • 联系
  • 订阅
  • 管理

公告

View Post

VS2008下web页面上传图片的自定义控件源码

本代码来自网络,非本人原创。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;

namespace UploadImage
{
    [DefaultProperty("Text"),
   ToolboxData(@"<{0}:UpImage runat=server></{0}:UpImage>")]
    public class UpImage : Control, INamingContainer
    {
        protected int filelength;
        protected string imageUrl;
        protected string mydirectory;
        static string LogoURL;
        protected string vpicture;
        public Button mybutton;
        public HtmlInputFile fileUpload;
        public Label Label1;

        public UpImage()
        {
            this.EnsureChildControls();
        }
        [Bindable(true), Category("Appearance"), DefaultValue("")]
        [DescriptionAttribute("文件大小")]
        public int FileLength
        {
            set { filelength = value; }
            get { return filelength; }
        }
        [DescriptionAttribute("图片名字")]
        public string ImageUrl
        {
            set { imageUrl = value; }
            get { return imageUrl; }
        }
        [DescriptionAttribute("文件路径")]
        public string MyDirectory
        {
            get { return mydirectory; }
            set { mydirectory = value; }
        }
        [DescriptionAttribute("图片的相对地址")]
        public string Logo
        {
            get { return LogoURL; }
            set { LogoURL = value; }
        }
        [DescriptionAttribute("是否显示图片")]
        public string vPicture
        {
            set { vpicture = value; }
            get { return vpicture; }
        }
        private void mybutton_Click(object sender, System.EventArgs e)
        {
            if (!fileUpload.Value.ToString().Equals(""))
            {
                LogoURL = fileUpload.PostedFile.FileName.ToString();
                LogoURL = LogoURL.Substring(LogoURL.LastIndexOf("."), (LogoURL.Length - LogoURL.LastIndexOf(".")));
                if (fileUpload.PostedFile.ContentLength > filelength)
                {
                    myScript("图片超过指定大小!");
                }
                else
                {
                    if (LogoURL.Equals(".jpg") || LogoURL.Equals(".bmp") || LogoURL.Equals(".gif"))
                    {
                        LogoURL = mydirectory + "\\" + imageUrl + LogoURL;
                        mydirectory = Page.Server.MapPath(" ") + "\\" + mydirectory;
                        if (Directory.Exists(mydirectory))
                        { }
                        else
                        {
                            Directory.CreateDirectory(mydirectory);
                        }
                        fileUpload.PostedFile.SaveAs(Page.Server.MapPath(" ") + "\\" + LogoURL);
                        if (vpicture.Equals("1"))
                        {
                            Label1.Text = "<img width='100' heigth='100' src='" + LogoURL + "'>";
                        }
                        myScript("图片上传成功!");
                    }
                    else
                    {
                        myScript("文件类型不对!");
                    }
                }
            }
        }
        protected void myScript(string msg)
        {           
            Page.ClientScript.RegisterStartupScript(this.GetType(),"","<script language='JavaScript'>alert('" + msg + "');</script>"); //此处我进行了修正
        }
        protected override void CreateChildControls()
        {
            mybutton = new Button();
            fileUpload = new HtmlInputFile();
            Label1 = new Label();
            mybutton.Text = "提交";
            this.Controls.Add(fileUpload);
            this.Controls.Add(mybutton);
            this.Controls.Add(new LiteralControl("<p>"));
            this.Controls.Add(Label1);
            this.Controls.Add(new LiteralControl("</p>"));
            mybutton.Click += new EventHandler(mybutton_Click);
        }
    }
}

posted on 2008-11-22 22:58  Winter001  阅读(144)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3