亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET中怎么實現圖片上傳功能

發布時間:2021-07-15 16:15:19 來源:億速云 閱讀:182 作者:Leah 欄目:開發技術

這篇文章給大家介紹ASP.NET中怎么實現圖片上傳功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.界面代碼

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UploadPic.aspx.cs" Inherits="Pic_Try.UploadPic" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
 <title>圖片上傳和顯示</title>
 <style type="text/css">
 .pic_text{ color:Red;}
 .pic_label { color:Gray; margin-top:5px; margin-bottom:5px;}
 .pic_image { margin:5px;}
 </style>
</head>
<body>
 <form id="form1" runat="server">
 <div class="pic_image"><asp:Image ID="pic" runat="server" /></div>
 <div><asp:FileUpload ID="pic_upload" runat="server" /><asp:Label ID="lbl_pic" runat="server" class="pic_text"></asp:Label></div>
 <div class="pic_label">上傳圖片格式為.jpg, .gif, .bmp,.png,圖片大小不得超過8M</div>
 <div><asp:Button ID="btn_upload" runat="server" Text="上傳" onclick="btn_upload_Click"/></div>
 </form>
 
</body>
</html>


2.后臺代碼

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using System.Security.Cryptography;
using System.Web.Security;

namespace Pic_Try
{
 public partial class UploadPic : System.Web.UI.Page
 {
 protected void Page_Load(object sender, EventArgs e)
 {

 }

 protected void btn_upload_Click(object sender, EventArgs e)
 {
  Boolean fileOk = false;
  if (pic_upload.HasFile)//驗證是否包含文件
  {
  //取得文件的擴展名,并轉換成小寫
  string fileExtension = Path.GetExtension(pic_upload.FileName).ToLower();
  //驗證上傳文件是否圖片格式
  fileOk = IsImage(fileExtension);

  if (fileOk)
  {
   //對上傳文件的大小進行檢測,限定文件最大不超過8M
   if (pic_upload.PostedFile.ContentLength < 8192000)
   {
   string filepath = "/images/";
   if (Directory.Exists(Server.MapPath(filepath)) == false)//如果不存在就創建file文件夾
   {
    Directory.CreateDirectory(Server.MapPath(filepath));
   }
   string virpath = filepath + CreatePasswordHash(pic_upload.FileName, 4) + fileExtension;//這是存到服務器上的虛擬路徑
   string mappath = Server.MapPath(virpath);//轉換成服務器上的物理路徑
   pic_upload.PostedFile.SaveAs(mappath);//保存圖片
   //顯示圖片
   pic.ImageUrl = virpath;
   //清空提示
   lbl_pic.Text = "";
   }
   else {
   pic.ImageUrl = "";
   lbl_pic.Text = "文件大小超出8M!請重新選擇!";
   }
  }
  else {
   pic.ImageUrl = "";
   lbl_pic.Text = "要上傳的文件類型不對!請重新選擇!";
  }
  }
  else
  {
  pic.ImageUrl = "";
  lbl_pic.Text = "請選擇要上傳的圖片!";
  }
 }

 /// <summary>
 /// 驗證是否指定的圖片格式
 /// </summary>
 /// <param name="str"></param>
 /// <returns></returns>
 public bool IsImage(string str) {
  bool isimage = false;
  string thestr = str.ToLower();
  //限定只能上傳jpg和gif圖片
  string[] allowExtension = { ".jpg", ".gif", ".bmp",".png" };
  //對上傳的文件的類型進行一個個匹對
  for (int i = 0; i < allowExtension.Length; i++)
  {
  if (thestr == allowExtension[i])
  {
   isimage = true;
   break;
  }
  }
  return isimage;
 }

 /// <summary>
 /// 創建一個指定長度的隨機salt值
 /// </summary>
 public string CreateSalt(int saltLenght)
 {
  //生成一個加密的隨機數
  RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();
  byte[] buff = new byte[saltLenght];
  rng.GetBytes(buff);
  //返回一個Base64隨機數的字符串
  return Convert.ToBase64String(buff);
 }

 
 /// <summary>
 /// 返回加密后的字符串
 /// </summary>
 public string CreatePasswordHash(string pwd, int saltLenght)
 {
  string strSalt = CreateSalt(saltLenght);
  //把密碼和Salt連起來
  string saltAndPwd = String.Concat(pwd, strSalt);
  //對密碼進行哈希
  string hashenPwd = FormsAuthentication.HashPasswordForStoringInConfigFile(saltAndPwd, "sha1");
  //轉為小寫字符并截取前16個字符串
  hashenPwd = hashenPwd.ToLower().Substring(0, 16);
  //返回哈希后的值
  return hashenPwd;
 }
 }
}

3.最后防止上傳大文件圖片時報錯,配置文件添加配置

<?xml version="1.0" encoding="utf-8"?>

<!--
 如何配置 ASP.NET 應用程序的詳細消息
 -->

<configuration>
 <system.web>
 <compilation debug="true" targetFramework="4.0" />
 <httpRuntime executionTimeout="240" maxRequestLength="8192000"/>
 </system.web>

</configuration>

關于ASP.NET中怎么實現圖片上傳功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

连平县| 盱眙县| 桦川县| 太谷县| 天气| 略阳县| 海南省| 新竹市| 双牌县| 炉霍县| 泸州市| 福泉市| 德格县| 呼玛县| 龙海市| 西昌市| 凤翔县| 德州市| 武功县| 巴林左旗| 奎屯市| 襄汾县| 温州市| 观塘区| 本溪市| 进贤县| 顺昌县| 即墨市| 探索| 永宁县| 乌审旗| 沁阳市| 高密市| 井陉县| 汤阴县| 株洲市| 乡宁县| 白水县| 南部县| 胶州市| 甘德县|