博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件上传(实例)
阅读量:5174 次
发布时间:2019-06-13

本文共 1892 字,大约阅读时间需要 6 分钟。

.aspx:

<tr>

<th>附件上传</th>

<td colspan="5">

  <input type="hidden" id="hdAttachIds" runat="server"/>

  <asp:Repeater ID="rpAttachment" runat="server" OnItemCommand="rpAttachment_ItemCommand">

  <HeaderTemplate>

  <table class="table-list">

  <thead><tr><th>序号</th><th>附件名称</th><th>附件大小</th><th>操作</th></tr></thead>

  </table> 

  </HeaderTemplate>

  <ItemTemplate>

  <tr>

  <td><a href='<%#ResolveUrl(Eval("FilePath").ToString())%>' target="_blank"><%#Eval("FileName")%></a></td>

  <td><%#Eval("FileSize")%>&nbsp;KB</td>

  <td><asp:LinkButton ID="btnDelete" Text="删除附件" CommandName="Delete" CommandArgument='<%#Eval("Id")%>' runat="server" /></td>

     </tr>

  </ItemTemplate> 

  </Repeater>

 

  <asp:FileUpload ID="fileUploadAttachment" runat="server" cssClass="input-text" />

  <asp:linkbutton id="btnUploadAttach" onClientclick="showLoading();" Onclick="btnUploadAttach_Click"><i>上传附件</i></asp:linkbutton>

</td>

</tr>

aspx.cs:

protected void btnUploadAttach_Click(object sender,EventArgs e)

{

  if(fileUploadAttachment.HasFile)

  {

  string filename=fileUploadAttachment.FileName;

  string path="~/Upload/Proposal/"+Datatime.Now.Year+"/" + DateTime.Now.Ticks + Path.GetExtension(fileName);

  try{

  if(!FileHelper.CheckAttachmentExtension(fileName))//检测是否符合上传的文件名的规范

    waring("上传文件类型非法!");

  if(!FileHelper.UploadFile(fileUploadAttachment.PostedFile,Server.MapPath(Path)))

    warning("上传失败,请联系管理员!")//路径不正确

  var fileRecord=new FileRecord{

  FileName=fileName,

  FilePath=path,

  FileSize=string.Format("{0:#.##}", fileUploadAttachment.PostedFile.ContentLength / 1024.0);

  Inputer=CurrentUser.RealName,

  InputTime=DateTime.Now,

  };

  FileRecordService.Add(FileRecord);

  FileRecordIds+fileRecord.id+",";//存储修改信息包含的附件id列表

  LoadAttachment();//重新加载页面

  }

}

  catch(Exception err){

  Warning("上传附件失败:"+HttpUtility.HtmlEncode(err.Message))

  }

}

转载于:https://www.cnblogs.com/sunzgod/p/4344451.html

你可能感兴趣的文章
开博@纪念
查看>>
linux的正则表达式
查看>>
Android 中EditText 与Keyboard 引起的UI bug
查看>>
20162316刘诚昊 2016-2017-2《程序设计与数据结构》课程总结
查看>>
代理模式---动态代理之JDK
查看>>
POJ 1182 食物链
查看>>
python xml解析和生成
查看>>
MySQL MGR集群搭建
查看>>
吴恩达深度学习笔记 cousrse4 week1作业
查看>>
程序员前辈走过的路
查看>>
UBUNTU 10.04 更新源 补充
查看>>
outputcache
查看>>
pc110301QWERTYU
查看>>
go 数组
查看>>
ilspy 点击根节点后进行解析的方法
查看>>
promise原理及使用方法
查看>>
MVC实例应用模式
查看>>
明白这十个故事-->你也就参悟了人生 .
查看>>
linux忘记root密码后的解决办法
查看>>
killing rabbits
查看>>