Asp.net相關知識和經驗的碎片化記錄

来源:http://www.cnblogs.com/yuzhihui/archive/2016/03/30/5337347.html
-Advertisement-
Play Games

1、web前臺頁面文件上傳的文件大小限制問題 1.1 通過Web.Config配置上傳文件的大小限制(涉及站點安全問題,謹慎配置!!!)。 1.2 通過後臺C#代碼進行上傳文件大小的限制。 上述兩種方法的使用可滿足不同的需求,並不是可以相互替代的解決方法。新手總結,還望讀者自行甄別使用。 2、.ne ...


1、web前臺頁面文件上傳的文件大小限制問題

  1.1 通過Web.Config配置上傳文件的大小限制(涉及站點安全問題,謹慎配置!!!)。

<system.webServer>
  <security>
    <requestFiltering>
      <requestLimits maxQueryString="10240" maxAllowedContentLength="2147483647" /> <!—限制2G-->
    </requestFiltering>
  </security>
</system.webServer>

  1.2 通過後臺C#代碼進行上傳文件大小的限制。

/* 判斷上傳的文件大小是否超出限制的大小 */
public bool isOutFileSizeLimit(System.Web.HttpContext context,int nFileSize)
{
    if(context.Request.ContentLength>nFileSize)
    {
        return true; //超出限制
    }
    else
    {
        return false; //未超出限制
    }
}

  上述兩種方法的使用可滿足不同的需求,並不是可以相互替代的解決方法。新手總結,還望讀者自行甄別使用。

 2、.net線程池的應用 

 1 using System.Threading;
 2 
 3 namespace Threading_Test.Test
 4 {
 5     /// <summary>
 6     ///線程池處理函數輸入參數類的封裝
 7     /// </summary>
 8     internal class SynDataParam
 9     {
10         public bool bIsSysData;     //標識
11         public string sFolderPath;  //ftp路徑
12         public string sFolderPath_Tk;   //ftp路徑tk
13 
14         /// <summary>
15         /// 構造函數
16         /// </summary>
17         /// <param name="p_bIsSysData">標識</param>
18         /// <param name="p_sFolderPath">ftp路徑</param>
19         /// <param name="p_sFolderPath_Tk">ftp路徑tk</param>
20         public SynDataParam(bool p_bIsSysData, string p_sFolderPath,string p_sFolderPath_Tk)
21         {
22             bIsSysData = p_bIsSysData;  
23             sFolderPath = p_sFolderPath;
24             sFolderPath_Tk = p_sFolderPath_Tk;
25         }
26     }
27 
28     public class Test
29     {
30           public void main()
31          {
32             ThreadPool.QueueUserWorkItem(new WaitCallback(this.SynDataToTiKu), new SynDataParam(true,l_sPartContentFtpPath,"123"));
33          }
34 
35         /// <summary>
36         /// 
37         /// </summary>
38         /// <param name="state">傳入SynDataParam類型的參數</param>
39         public void SynDataToTiKu(Object state)
40         {
41             SynDataParam SynDataParam=state as SynDataParam;
42 
43             if (SynDataParam.bIsSysData) 
44             {
45  
46             }
47         }
48 
49     }
50 }

 3、web service的http請求調用方式(不通過IDE的服務引用功能)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.IO;
using System.Web.Configuration;
using System.Net;
namespace yu.zhi.hui { internal class GetOrSetDataHelper { /***web service的http post方式調用***/ /// <summary> /// 獲取結果(這個方法主要是獲取PostUrl 然後調用GetPostRequest) /// </summary> /// <param name="sQueryStr">介面的輸入參數,形如:sLevel=string&sFormat=string</param> /// <param name="interfaceName">需要調用的對方介面方法名</param> /// <returns>返回介面的返回值</returns> public string GetOrSetDataByWsWithHttpPost(string sQueryStr, string interfaceName,string sWsPath) { //post調用方式的url:"http://xxx.xxx.xx.xx:xxxx/xxxx.asmx/Get_xxx" string PostUrl = sWsPath + "/" + interfaceName; byte[] data = Encoding.UTF8.GetBytes(sQueryStr.ToString()); string resCode = GetPostRequest(data, PostUrl); return resCode; } /// <summary> /// Http Post方式調用ws介面--發送請求數據並獲取響應數據 /// </summary> /// <param name="data"></param> /// <param name="url"></param> /// <returns></returns> private string GetPostRequest(byte[] data, string url) { try { //創建請求 HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url);//完整的請求地址(ip:埠號/+url) myRequest.Method = "POST"; myRequest.ContentType = "application/x-www-form-urlencoded"; myRequest.Accept = "text/xml"; myRequest.Headers.Add("SOAPAction", url);//是否和請求一起發送 myRequest.UseDefaultCredentials = true; myRequest.ContentLength = data.Length;//創建輸入流 Stream newStream = myRequest.GetRequestStream(); //發送請求 Send the data. newStream.Write(data, 0, data.Length); newStream.Close(); /*-請求end-*/ /*-響應begin-*/ //創建響應 Get response var response = (HttpWebResponse)myRequest.GetResponse(); using (var reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding("UTF-8"))) { //讀取響應 string result = reader.ReadToEnd(); reader.Close(); response.Close(); return result; } } catch (Exception ex) { return ex.ToString(); } } } }

 4、直接保存字元串到ftp伺服器上的文件中

        #region 保存字元串到ftp的文件中
        /// <summary>
        /// 保存字元串到ftp的文件中
        /// </summary>
        /// <param name="sStr">待保存字元串</param>
        /// <param name="sFtpUrl">ftp伺服器的url</param>
        /// <param name="sFilePath">文件路徑</param>
        /// <param name="sFtpUser">ftp伺服器用戶名</param>
        /// <param name="sFtpPwd">ftp伺服器密碼</param>
        public bool SaveStringToFileOnFtp(string sStr, string sFtpUrl,string sFilePath,string sFtpUser,string sFtpPwd)
        {
            try
            {
                //上傳到ftp伺服器
                FtpWebRequest reqFTP;
                Uri uri = new Uri(sFtpUrl + sFilePath);
                string sPartialPathOfFile = sFilePath.Substring(0, sFilePath.LastIndexOf("/") + 1);
                //創建文件所在文件夾
                FtpCheckDirectoryExist(sFtpUrl, sPartialPathOfFile, sFtpUser, sFtpPwd);
                reqFTP = (FtpWebRequest)FtpWebRequest.Create(uri);
                reqFTP.Credentials = new NetworkCredential(sFtpUser, sFtpPwd);
                reqFTP.Method = WebRequestMethods.Ftp.UploadFile;
                reqFTP.KeepAlive = false;
                reqFTP.UseBinary = true;
                reqFTP.Proxy = null;
                int buffLength = 2048;  //每次讀入文件流2kb
                byte[] buff = new byte[buffLength];
                //將字元串讀入記憶體
                MemoryStream stream = new MemoryStream(Encoding.UTF8.GetBytes(sStr));
                Stream requestStream = reqFTP.GetRequestStream();
                int len = stream.Read(buff, 0, buff.Length);
                while (len > 0)
                {
                    requestStream.Write(buff, 0, len);
                    len = stream.Read(buff, 0, buffLength);
                }
                stream.Close();
                requestStream.Close();
                stream.Dispose();//釋放資源
                requestStream.Dispose();//釋放資源
                return true;
            }
            catch(Exception ex)               
            {
                ex.ToString();
                return false;
            }
        }
      /// <summary>
        /// 判斷文件的目錄是否存,不存則創建
        /// </summary>
        /// <param name="destFilePath"></param>
        private static void FtpCheckDirectoryExist(string strFtpURI, string destFilePath, string strFtpUserID, string strFtpPassword)
        {
            string fullDir = destFilePath.Substring(0, destFilePath.LastIndexOf("/"));
            string[] dirs = fullDir.Split('/');
            string curDir = "";
            for (int i = 0; i < dirs.Length; i++)
            {
                string dir = dirs[i];
                //如果是以/開始的路徑,第一個為空
                if (dir != null && dir.Length > 0)
                {
                    try
                    {
                        curDir += dir + "/";
                        FtpMakeDir(strFtpURI, curDir, strFtpUserID, strFtpPassword);
                    }
                    catch (Exception)
                    { }
                }
            }
        }
        /// <summary>
        /// 創建ftp目錄
        /// </summary>
        /// <param name="localFile"></param>
        /// <returns></returns>
        private static Boolean FtpMakeDir(string strFtpURI, string destFilePath, string strFtpUserID, string strFtpPassword)
        {
            FtpWebRequest req = (FtpWebRequest)WebRequest.Create(strFtpURI + destFilePath);
            req.Credentials = new NetworkCredential(strFtpUserID, strFtpPassword);
            req.Proxy = null;
            req.KeepAlive = false;
            req.Method = WebRequestMethods.Ftp.MakeDirectory;//請求方法為創建目錄方法
            req.UseBinary = true;
            FtpWebResponse response = req.GetResponse() as FtpWebResponse;
            Stream ftpStream = response.GetResponseStream();
            ftpStream.Close();
            response.Close();
            req.Abort();
            return true;
        }
#endregion

 

後續更新中,敬請期待...


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • (1)為什麼要使用Enum? (4)如果enum中的部分成員顯式定義了值,而部分沒有;那麼沒有定義值的成員還是會按照上一個成員的值來遞增賦值,例如: (5)enum枚舉成員可以用來作為位標誌,同時支持位的操作(位與,位或等等),例如:??? 十六進位數的一個作用就是用來進行位運算和操作,很方便。 ( ...
  • 【提取內容圖片地址】 【去掉字元串中的數字】 ...
  • 看完覺得不錯,適合作為學習資料,就轉載過來了 原文鏈接:http://www.cnblogs.com/Wayou/archive/2012/09/20/EF_CodeFirst.html 這是上周就寫好的文章,是在公司浩哥的建議下寫的,本來是部門裡面分享求創新用的,這裡貼出來分享給大家。 最近在對M ...
  • 1.文件目錄操作命令 (1) ls 顯示文件和目錄列表 a ls -l 顯示文件的詳細信息 b ls -a 列出當前目錄的所有文件,包含隱藏文件。 c stat '目錄/文件' 顯示指定目錄/文件的相關信息,比ls命令顯示的內容更多 (2) mkdir '目錄' 創建目錄 (3) touch '文件 ...
  • 1:使用epplus合併多個excel文件到同一excel的不同sheet頁中 2:設置excel文件sheet頁的 頁邊距(使用epplus) ...
  • 來源:http://www.cnblogs.com/Wayou/archive/2012/09/20/EF_CodeFirst.html Entity Framework的全稱是ADO.NET Entity Framework,是微軟開發的基於ADO.NET的ORM(Object/Relationa ...
  • C#中的委托與游戲中的運用 1.什麼是委托 在C/C++中,有函數指針的概念,即指向函數的指針。當我們調用該指針時,就相當於調用了該指針所指向的函數,這就是函數指針的一個作用,而他另一個作用就是將自己作為其他函數的參數。 但是指針是直接訪問記憶體單元的,程式員對指針的不恰當使用常常會引發錯誤。因此作為 ...
  • 不做開篇廢話,我們發現: AdaptiveTrigger 不夠好 我們知道,UWP可以在一個頁面適應不同尺寸比例的屏幕。一般來說這個功能是通過官方推薦的AdaptiveTrigger 進行的。 比如這樣: 我們可以看到這樣的的Trigger制定了最小值,隱含了條件“當滿足長寬都大於於這個條件時,這個 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...