摘要:
string filepath = Server.MapPath("~/upload"); HttpFileCollection uploadFile = Request.Files; for (int i = 0; i < uploadFile.Count; i++) { HttpPostedFile userpostfile = uploadFile[i]; if (userpostfile.ContentLength > 0) { Label1.Text = ""; Label1.Text += "<u>文件#&q 阅读全文
posted @ 2012-11-19 12:54
TomWang
阅读(1192)
评论(0)
推荐(0)