2个回答
展开全部
用picture控件
然后选择picture的双击事件
private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
{
pictureBox1.ImageLocation = openFileDialog1.FileName;
}
private void pictureBox1_DoubleClick_1(object sender, EventArgs e)
{
this.openFileDialog1.ShowDialog();
}
这个 其中 openFileDialog1是一个拆亮销键袭控件旅游 就需要这两个就可以把电脑上的图通过双击picture这个控件 选择自己想要上传的图片 openFileDialog1 选择FILEOK的事件
然后选择picture的双击事件
private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
{
pictureBox1.ImageLocation = openFileDialog1.FileName;
}
private void pictureBox1_DoubleClick_1(object sender, EventArgs e)
{
this.openFileDialog1.ShowDialog();
}
这个 其中 openFileDialog1是一个拆亮销键袭控件旅游 就需要这两个就可以把电脑上的图通过双击picture这个控件 选择自己想要上传的图片 openFileDialog1 选择FILEOK的事件
展开全部
首先导入命名空间:
using System.IO;
假使页面上有一个FileUpload控件FileUpload1;和一个Button1
我们在Button1的click事颂团件中这样写:
private void Button1_Click(Object sender,EventArges e)
{
// 取得上传的文件对象
HttpPostedFile hpf = FileUpload1.PostedFile;
// 取得文件路径
string filePath = hpf.FileName;
// 从路径中取出文件铅做名用来作为槐樱衡保存的文件名
string filePath = Path.GetFileName(filePath);
// 取得服务器站点根目录的绝对路径
string serverPath = Server.MapPath("~/");
// 保存文件
hpf.Save(serverPath + filePath);
}
using System.IO;
假使页面上有一个FileUpload控件FileUpload1;和一个Button1
我们在Button1的click事颂团件中这样写:
private void Button1_Click(Object sender,EventArges e)
{
// 取得上传的文件对象
HttpPostedFile hpf = FileUpload1.PostedFile;
// 取得文件路径
string filePath = hpf.FileName;
// 从路径中取出文件铅做名用来作为槐樱衡保存的文件名
string filePath = Path.GetFileName(filePath);
// 取得服务器站点根目录的绝对路径
string serverPath = Server.MapPath("~/");
// 保存文件
hpf.Save(serverPath + filePath);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询