摘要: 在ASP.NET1.1的时候,上传文件代码://上传版面图片 private void UpLoadPicture(MagazineLayout layout) { //不上传附件时直接返回0作为附件ID if (String.IsNullOrEmpty(PictureName.PostedFile.FileName)) { return; } string oldPicturePath = ""; if (!string.IsNullOrEmpty(layout.PicturePath)) { oldPicturePath = Server.MapPath(layout. 阅读全文
posted @ 2011-08-05 16:56 polymorphic 阅读(343) 评论(1) 推荐(0) 编辑