91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

ASP.NET上傳實例介紹

發布時間:2021-08-21 09:29:51 來源:億速云 閱讀:96 作者:chen 欄目:編程語言

本篇內容介紹了“ASP.NET上傳實例介紹”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

KindEditor是一個不錯的網頁在線編輯器,可是它只提供了asp,php,jsp上傳的類,沒有提供ASP.NET上傳的類。

ASP.NET上傳代碼:

  1. using System;  

  2. using System.Globalization;  

  3. using System.Collections;  

  4. using System.Configuration;  

  5. using System.Data;  

  6. using System.Web;  

  7. using System.Web.Security;  

  8. using System.Web.UI;  

  9. using System.Web.UI.HtmlControls;  

  10. using System.Web.UI.WebControls;  

  11. using System.Web.UI.WebControls.WebParts;  

  12.  

  13. public partial class Jscript_KindEditor_upload_cgi_upload : System.Web.UI.Page  

  14. {  

  15. protected void Page_Load(object sender, EventArgs e)  

  16. {  

  17. //文件保存目錄路徑  

  18. string SavePath = "/Upload_Images/";  

  19. //文件保存目錄URL  

  20. string SaveUrl = "/Upload_Images/";  

  21. //上傳圖片類型  

  22. string[] ExtStr=new string[4];  

  23. ExtStr[0] = ".gif";  

  24. ExtStr[1] = ".jpg";  

  25. ExtStr[2] = ".png";  

  26. ExtStr[3] = ".bmp";  

  27. //圖片的***大小  

  28. int MaxSize = 100000;  

  29. //錯誤提示  

  30. string[] MsgStr = new string[3];  

  31. MsgStr[0] = "上傳文件大小超過限制.";  

  32. MsgStr[1] = "上傳文件擴展名是不允許的擴展名.";  

  33. MsgStr[2] = "上傳文件失敗\\n請重試.";  

  34.  

  35. string imgWidth = Request.Form["imgWidth"];  

  36. string imgHeight = Request.Form["imgHeight"];  

  37. string imgBorder = Request.Form["imgBorder"];  

  38. string imgTitle = Request.Form["imgTitle"];  

  39. string imgAlign = Request.Form["imgAlign"];  

  40. string imgHspace = Request.Form["imgHspace"];  

  41. string imgVspace = Request.Form["imgVspace"];  

  42.  

  43. HttpPostedFile imgFile = HttpContext.Current.Request.Files["imgFile"];  

  44. //獲得文件名  

  45. string FileName = System.IO.Path.GetFileName(imgFile.FileName);  

  46.  

  47. if (FileName != "")  

  48. {  

  49. if (imgFile.ContentLength > MaxSize)  

  50. {  

  51. Alert(MsgStr[0]);  

  52. }  

  53. else  

  54. {  

  55. string fileExtension = System.IO.Path.GetExtension(FileName).ToLower();  

  56. if (CheckExt(ExtStr, fileExtension))  

  57. {  

  58. //重新為文件命名,時間毫秒部分+擴展名  

  59. string imgReName = "" + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss-ffff", 
    DateTimeFormatInfo.InvariantInfo) + "" + fileExtension;  

  60. //文件夾名  

  61. string imgFolderName=DateTime.Now.ToString
    ("yyyyMMdd",DateTimeFormatInfo.InvariantInfo);  

  62.  

  63. try  

  64. {  

  65.  

  66. if (!System.IO.Directory.Exists(@Server.MapPath
    ("" + SavePath + "" +imgFolderName + "")))  

  67. {  

  68. //生成文件完整目錄  

  69. System.IO.Directory.CreateDirectory(@Server.MapPath
    ("" + SavePath + "" +imgFolderName + ""));  

  70. }  

  71.  

  72. imgFile.SaveAs(@Server.MapPath
    ("" + SavePath + "" + imgFolderName + "/")+imgReName);  

  73.  

  74.  

  75. }  

  76. catch  

  77. {  

  78. Alert(MsgStr[2]);  

  79. }  

  80. string imgUrl = SaveUrl + imgFolderName + "/" + imgReName;  

  81. ReturnImg(imgUrl, imgWidth, imgHeight, imgBorder, 
    imgTitle, imgAlign, imgHspace, imgVspace);  

  82.  

  83. }  

  84. else  

  85. {  

  86. Alert(MsgStr[1]);  

  87. }  

  88. }  

  89. }  

  90.  

  91.  

  92. }  

  93. /// <summary> 

  94. /// 提示關閉層  

  95. /// </summary> 

  96. /// <param name="MsgStr"></param> 

  97. private void Alert(string MsgStr)  

  98. {  

  99.  

  100. Response.Write("<html>");  

  101. Response.Write("<head>");  

  102. Response.Write("<title>error</title>");  

  103. Response.Write("<meta http-equiv=\"content-type\" content=\"text/html;
    charset=utf-8\">");  

  104. Response.Write("</head>");  

  105. Response.Write("<body>");  

  106. Response.Write("<script type=\"text/javascript\">alert(\"" + MsgStr + "\");
    parent.KindDisableMenu();parent.KindReloadIframe();</script>");  

  107. Response.Write("</body>");  

  108. Response.Write("</html>");  

  109. }  

  110. /// <summary> 

  111. /// 檢測文件類型  

  112. /// </summary> 

  113. /// <param name="ExtStr"></param> 

  114. /// <param name="fileExt"></param> 

  115. /// <returns></returns> 

  116. private bool CheckExt(string[] ExtStr,string fileExt)  

  117. {  

  118. for (int i = 0; i < ExtStr.Length; i++)  

  119. {  

  120. if (ExtStr[i] != fileExt)  

  121. {  

  122. return true;  

  123. }  

  124. }  

  125. return false;  

  126. }  

  127. /// <summary> 

  128. /// 返回圖片  

  129. /// </summary> 

  130. /// <param name="FileUrl"></param> 

  131. /// <param name="FileWidth"></param> 

  132. /// <param name="FileHeight"></param> 

  133. /// <param name="FileBorder"></param> 

  134. /// <param name="FileTitle"></param> 

  135. /// <param name="FileAlign"></param> 

  136. /// <param name="FileHspace"></param> 

  137. /// <param name="FileVspace"></param> 

  138. private void ReturnImg( string FileUrl,string FileWidth,string FileHeight,
    string FileBorder,string FileTitle,string FileAlign,string FileHspace,string FileVspace)  

  139. {  

  140. Response.Write("<html>");  

  141. Response.Write("<head>");  

  142. Response.Write("<title>上傳成功</title>");  

  143. Response.Write("<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">");  

  144. Response.Write("</head>");  

  145. Response.Write("<body>");  

  146. Response.Write("<script type=\"text/javascript\">parent.KindInsertImage
    (\"" + FileUrl +"\",\"" + FileWidth + "\",\"" + FileHeight + "\",\"" + 
    FileBorder + "\",\"" + FileTitle + "\",\"" + FileAlign + "\",\"" + 
    FileHspace + "\",\"" + FileVspace + "\");</script>");  

  147. Response.Write("</body>");  

  148. Response.Write("</html>");  

  149. }  

“ASP.NET上傳實例介紹”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

沙坪坝区| 阳原县| 汤原县| 兴国县| 商水县| 嘉善县| 五寨县| 个旧市| 绥芬河市| 青河县| 舟山市| 洛浦县| 阿拉善盟| 江门市| 柯坪县| 车致| 丰城市| 田阳县| 夹江县| 名山县| 泽库县| 武山县| 邯郸县| 平泉县| 太保市| 贡嘎县| 兴业县| 沂源县| 右玉县| 离岛区| 巴东县| 和林格尔县| 宜昌市| 黔南| 嘉鱼县| 辽中县| 嵩明县| 福鼎市| 和田县| 莆田市| 连平县|