在ASP.NET中实现图片、视频文件上传方式

一、图片

1、在前端用<asp:FileUpload ID="UpImgName" runat="server"/>控件

2、在后台.cs中写上

  protected void btnSubmit_Click(object sender,EventArgs e)

{

  string strImgPath=string.Empty;

  string strDateTime=dateTime.Now.Tostring("yyyyMMddhhmmss");

  strImgPath=this.UpImgPath.PostedFile.FileName;

  if(strImgPath!="")

  {

    string extension="";//扩展名

    extension=Path.GetExtension(strImgPath).ToLower();

    if(extension==".jpg"||extension==".jpeg"||extension==".bmp||extension==""gif")

    {

      if(this.UpImgPath.PostedFile.ContentLength>1000000)//图片大小是否大于1M

      {

        Response.Write("<script>alert(‘图片太大‘)</script>");  

        return;    

      }

      strImgPath="/Images/"+strDateTime+extension;

      string UpPath=Server.MapPath(strImgPath);  

      this.UpImgPath.PostedFile.SaveAs(UpPath);    

    }

    else

    {

      Response.Write("<script>alert(‘图片格式错误‘)</script>");

      return ;

    }  

  }

}

二、视频,文件

1、在前端用<asp:FileUpload ID="UpVideoName" runat="server"/>控件

2、在后台.cs中写上

  protected void btnSubmit_Click(object sender,EventArgs e)

{

  string strVideoPath=string.Empty;

  string strDateTime=DateTime.Now.Tostring("yyyyMMddhhmmss");

  strVideoPath=this.UpVideoName.PostedFile.FileName;

  if(strVideoPath!="")

  {

    string extension="";

    extension=Path.GetExtension(strVideoPath).ToLower();

    if(extension==".flv" || extension == ".doc" || extension == ".docx" || extension == ".zip" || extension == ".rar")

    {

      if(this.UpVideoName.PostedFile.ContentLength>30000000)

      {

        Response.Write("<script>alert(‘视频或文件太大‘)</script>");

        return;

      }

      strVideoPath="/VideoOrFile/"+strDateTime+extension;

      string UpPath=Server.MapPath(strVideoPath);

      this.UpVideoName.PostedFile.SaveAs(UpPath);

    }

    else

    {

      Response.Write("<script>alert(‘存储的格式不正确‘)</script>")

      return;

    }

  }

}

在ASP.NET中实现图片、视频文件上传方式,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。