最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

KindEditor圖片上傳的Asp.net代碼實(shí)例

 更新時(shí)間:2013年11月07日 15:35:26   作者:  
KindEditor是一個(gè)不錯(cuò)的網(wǎng)頁在線編輯器,可是它只提供了asp,php,jsp上傳的類,沒有提供Asp.net上傳的類,廢話不多說,下面是ASP.NET的代碼

復(fù)制代碼 代碼如下:

using System;
using System.Globalization;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
public partial class Jscript_KindEditor_upload_cgi_upload : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//文件保存目錄路徑
string SavePath = "/Upload_Images/";
//文件保存目錄URL
string SaveUrl = "/Upload_Images/";
//上傳圖片類型
string[] ExtStr=new string[4];
ExtStr[0] = ".gif";
ExtStr[1] = ".jpg";
ExtStr[2] = ".png";
ExtStr[3] = ".bmp";
//圖片的最大大小
int MaxSize = 100000;
//錯(cuò)誤提示
string[] MsgStr = new string[3];
MsgStr[0] = "上傳文件大小超過限制.";
MsgStr[1] = "上傳文件擴(kuò)展名是不允許的擴(kuò)展名.";
MsgStr[2] = "上傳文件失敗//n請(qǐng)重試.";
string imgWidth = Request.Form["imgWidth"];
string imgHeight = Request.Form["imgHeight"];
string imgBorder = Request.Form["imgBorder"];
string imgTitle = Request.Form["imgTitle"];
string imgAlign = Request.Form["imgAlign"];
string imgHspace = Request.Form["imgHspace"];
string imgVspace = Request.Form["imgVspace"];
HttpPostedFile imgFile = HttpContext.Current.Request.Files["imgFile"];
//獲得文件名
string FileName = System.IO.Path.GetFileName(imgFile.FileName);
if (FileName != "")
{
if (imgFile.ContentLength > MaxSize)
{
Alert(MsgStr[0]);
}
else
{
string fileExtension = System.IO.Path.GetExtension(FileName).ToLower();
if (CheckExt(ExtStr, fileExtension))
{
//重新為文件命名,時(shí)間毫秒部分+擴(kuò)展名
string imgReName = "" + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss-ffff", DateTimeFormatInfo.InvariantInfo) + "" + fileExtension;
//文件夾名
string imgFolderName=DateTime.Now.ToString("yyyyMMdd",DateTimeFormatInfo.InvariantInfo);
try
{
if (!System.IO.Directory.Exists(@Server.MapPath("" + SavePath + "" +imgFolderName + "")))
{
//生成文件完整目錄
System.IO.Directory.CreateDirectory(@Server.MapPath("" + SavePath + "" +imgFolderName + ""));
}
imgFile.SaveAs(@Server.MapPath("" + SavePath + "" + imgFolderName + "/")+imgReName);

}
catch
{
Alert(MsgStr[2]);
}
string imgUrl = SaveUrl + imgFolderName + "/" + imgReName;
ReturnImg(imgUrl, imgWidth, imgHeight, imgBorder, imgTitle, imgAlign, imgHspace, imgVspace);
}
else
{
Alert(MsgStr[1]);
}
}
}

}
/// <summary>
/// 提示關(guān)閉層
/// </summary>
/// <param name="MsgStr"></param>
private void Alert(string MsgStr)
{
Response.Write("<html>");
Response.Write("<head>");
Response.Write("<title>error</title>");
Response.Write("<meta http-equiv=/"content-type/" content=/"text/html; charset=utf-8/">");
Response.Write("</head>");
Response.Write("<body>");
Response.Write("<script type=/"text/javascript/">alert(/"" + MsgStr + "/");parent.KindDisableMenu();parent.KindReloadIframe();</script>");
Response.Write("</body>");
Response.Write("</html>");
}
/// <summary>
/// 檢測(cè)文件類型
/// </summary>
/// <param name="ExtStr"></param>
/// <param name="fileExt"></param>
/// <returns></returns>
private bool CheckExt(string[] ExtStr,string fileExt)
{
for (int i = 0; i < ExtStr.Length; i++)
{
if (ExtStr[i] != fileExt)
{
return true;
}
}
return false;
}
/// <summary>
/// 返回圖片
/// </summary>
/// <param name="FileUrl"></param>
/// <param name="FileWidth"></param>
/// <param name="FileHeight"></param>
/// <param name="FileBorder"></param>
/// <param name="FileTitle"></param>
/// <param name="FileAlign"></param>
/// <param name="FileHspace"></param>
/// <param name="FileVspace"></param>
private void ReturnImg( string FileUrl,string FileWidth,string FileHeight,string FileBorder,string FileTitle,string FileAlign,string FileHspace,string FileVspace)
{
Response.Write("<html>");
Response.Write("<head>");
Response.Write("<title>上傳成功</title>");
Response.Write("<meta http-equiv=/"content-type/" content=/"text/html; charset=utf-8/">");
Response.Write("</head>");
Response.Write("<body>");
Response.Write("<script type=/"text/javascript/">parent.KindInsertImage(/"" + FileUrl +"/",/"" + FileWidth + "/",/"" + FileHeight + "/",/"" + FileBorder + "/",/"" + FileTitle + "/",/"" + FileAlign + "/",/"" + FileHspace + "/",/"" + FileVspace + "/");</script>");
Response.Write("</body>");
Response.Write("</html>");
}
}

相關(guān)文章

最新評(píng)論

青川县| 东山县| 扎囊县| 平凉市| 金寨县| 嘉峪关市| 朝阳区| 滦平县| 武义县| 商丘市| 筠连县| 原阳县| 彩票| 铜陵市| 绥芬河市| 革吉县| 盐山县| 水城县| 双峰县| 弥勒县| 和田市| 稻城县| 房产| 湟源县| 神木县| 嘉义市| 大方县| 乐安县| 蚌埠市| 姚安县| 始兴县| 伊金霍洛旗| 沾化县| 香河县| 荔波县| 江西省| 宝兴县| 丹棱县| 玛沁县| 晴隆县| 星座|