最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
一个简单的文件上传功能控件
时间:2022-07-02 11:55:35 编辑:袖梨 来源:一聚教程网
总在用别人的控件,第一次想自己写个控件。于是写了个简单的小控件,主要是用于自己学习和其他想尝试写控件的朋友,请多多指教。
改控件主要作用是将本地图片上传到自定义目录。
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Web.UI.HtmlControls;
using System.IO;
namespace UpLoadImage
{
///
///作者:DarkAngel 2004-10-27日创建
///支持图片上传到服务器功能
///
[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("文件路径")
]
改控件主要作用是将本地图片上传到自定义目录。
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Web.UI.HtmlControls;
using System.IO;
namespace UpLoadImage
{
///
///作者:DarkAngel 2004-10-27日创建
///支持图片上传到服务器功能
///
[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("文件路径")
]
相关文章
- 我的世界刷怪塔怎么建造 06-28
- 荣耀90gt怎么设置返回键图标 06-28
- 暑假去神农架原始丛林旅游如何有效防蚊虫 06-28
- 明日方舟终末地折金票详解 明日方舟终末地限定兑换道具全解析 06-28
- 明日方舟终末地衍质源石作用详解 明日方舟终末地衍质源石获取与使用方法 06-28
- 明日方舟终末地下载大小及最低配置要求详解 明日方舟终末地安装包体积与设备兼容性指南 06-28