求助,vs2003中如何将图片上传到文件中。也就是论坛上传附件的功能
我自己找到一些代码,但是看不懂private void btPicture_Click(object sender, System.EventArgs e)
{
String path = Server.MapPath("images");
if(File.Exists(path + tbImg.Text))
{
Message.Text = "图片已存在";
return;
}
Request.Files[0].SaveAs(path+"\\"+tbImg.Text);
}