欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來(lái)到入門教程網(wǎng)!

C#教程

當(dāng)前位置:主頁(yè) > 軟件編程 > C#教程 >

c#圖片上傳和顯示的實(shí)現(xiàn)方法

來(lái)源:本站原創(chuàng)|時(shí)間:2020-01-10|欄目:C#教程|點(diǎn)擊: 次

由于需要圖片上傳的功能,所以花了一些時(shí)間網(wǎng)上找相關(guān)資料終于搞定,效果圖如下:

下面的是解決方案截圖和上傳的圖片截圖:

具體實(shí)現(xiàn)代碼如下:

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,圖片大小不得超過(guò)8M</div>
  <div><asp:Button ID="btn_upload" runat="server" Text="上傳" onclick="btn_upload_Click"/></div>
  </form>
 
</body>
</html>

2.后臺(tái)代碼UploadPic.aspx.cs

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)//驗(yàn)證是否包含文件
      {
        //取得文件的擴(kuò)展名,并轉(zhuǎn)換成小寫
        string fileExtension = Path.GetExtension(pic_upload.FileName).ToLower();
        //驗(yàn)證上傳文件是否圖片格式
        fileOk = IsImage(fileExtension);

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

    /// <summary>
    /// 驗(yàn)證是否指定的圖片格式
    /// </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" };
      //對(duì)上傳的文件的類型進(jìn)行一個(gè)個(gè)匹對(duì)
      for (int i = 0; i < allowExtension.Length; i++)
      {
        if (thestr == allowExtension[i])
        {
          isimage = true;
          break;
        }
      }
      return isimage;
    }

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

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

3.最后防止上傳大文件圖片時(shí)報(bào)錯(cuò),配置文件添加配置Web.config

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

<!--
 有關(guān)如何配置 ASP.NET 應(yīng)用程序的詳細(xì)消息,請(qǐng)?jiān)L問(wèn)
 http://go.microsoft.com/fwlink/?LinkId=169433
 -->

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

</configuration>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。

上一篇:C#Url操作類封裝、仿Node.Js中的Url模塊實(shí)例

欄    目:C#教程

下一篇:C#完成word文檔打印的方法

本文標(biāo)題:c#圖片上傳和顯示的實(shí)現(xiàn)方法

本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/6211.html

網(wǎng)頁(yè)制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語(yǔ)言數(shù)據(jù)庫(kù)服務(wù)器

如果侵犯了您的權(quán)利,請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)進(jìn)行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負(fù)任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有