PK- E孻畅 ? ##web.config 婮 婮
PK- E孻昽? 360_ssp_verify.txt 813600780b4c26e8b691a54f4d7a25ebPK- E孻A\鷹 404.aspx ? ? 锘?%@ Page Language="C#" AutoEventWireup="true" CodeFile="404.aspx.cs" Inherits="_404" %>
PK- E孻K{ 404.aspx.cs D D 锘?*
* Copyright 漏 2009-2012 涓囨埛缃戠粶鎶€鏈湁闄愬叕鍙?
* 鏂?浠?鍚嶏細_404.aspx.cs
* 鏂囦欢鎻忚堪锛氳嚜瀹氫箟404椤甸潰锛岀敤浜庡墠鍙伴潤鎬侀〉鍙戝竷
*
* 鍒涘缓鏍囪瘑: lixin 2012-12-27
*
* 淇敼鏍囪瘑锛?
*/
using System;
using Whir.Framework;
using Whir.Service;
using Whir.Label.Static;
public partial class _404 : System.Web.UI.Page
{
///
/// 璁块棶鐨勯敊璇〉闈?
///
protected string AspxErrorPath { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
#region 涓轰簡涓嶅奖鍝峴eo锛屽凡缁廹lobal.asax鏂囦欢閲屽鐞嗚閫昏緫
//AspxErrorPath = RequestUtil.Instance.GetQueryString("aspxerrorpath");
//if (!AspxErrorPath.IsEmpty())
//{
// bool writeSuccess = StaticLabelHelper.Instance.Build(AspxErrorPath);
// if (writeSuccess)
// {
// Response.Redirect(AspxErrorPath);
// return;
// }
//}
#endregion
ph404.Visible = true;
}
}PK- E孻酰l ADClick.aspx a a 锘?%@ Page Language="C#" AutoEventWireup="true" CodeFile="ADClick.aspx.cs" Inherits="ADClick" %>PK- E孻形? ADClick.aspx.cs 锘?*
* Copyright 漏 2009-2012 涓囨埛缃戠粶鎶€鏈湁闄愬叕鍙?
* 鏂?浠?鍚嶏細ADClick.aspx.cs
* 鏂囦欢鎻忚堪锛氬墠鍙板箍鍛婄偣鍑昏烦杞〉闈紝鐢ㄤ簬缁熻骞垮憡鐐瑰嚮璇︾粏
*
* 鍒涘缓鏍囪瘑: liuyong 2013-01-16
*
* 淇敼鏍囪瘑锛?
*/
using System;
using Whir.Framework;
public partial class ADClick : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string url = RequestUtil.Instance.GetQueryString("url");
Response.Redirect(url);
}
}PK- E孻 Ajax/FileUpload/ PK- E孻W]?' Ajax/FileUpload/JQueryUploadify.aspx.cs ? ? 锘縰sing System;
using System.Web;
using System.Web.UI;
using Whir.Config;
using Whir.Config.Models;
using Whir.Domain;
using Whir.Framework;
using Whir.Service;
using Whir.ezEIP.Web;
public partial class Ajax_FileUpload_JQueryUploadify : Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Clear();
Response.End();//瀹夊叏鎬ч棶棰樿繕娌¤В鍐筹紝v4.0.6鍐嶅紑鏀捐鍔熻兘
// new SysManagePageBase().IsHadLogin(); //鍒ゆ柇鏄惁鐧诲綍浜?
try
{
HttpPostedFile uploadPostedFile = Request.Files["Filedata"];
if (Request.ApplicationPath != null)
{
string savePath = Request["folder"].Replace(Request.ApplicationPath, "");
var physicalPath = Server.MapPath("~/" + (AppSettingUtil.AppSettings["UploadFilePath"] + savePath).Replace("//", "/"));
string saveFileName = ServiceFactory.UploadFilesService.UploadFile(uploadPostedFile, physicalPath, false);
//涓婁紶鏂囦欢鍚嶇О鍜岀墿鐞嗗悕绉板埌鏁版嵁搴?
var upload = new Upload();
upload.Name = uploadPostedFile.FileName;
upload.RealName = saveFileName;
upload.IsDel = false;
upload.State = 0;
upload.CreateDate = DateTime.Now;
upload.UpdateDate = DateTime.Now;
upload.UpdateUser = SysManagePageBase.CurrentUserName;
upload.CreateUser = SysManagePageBase.CurrentUserName;
ServiceFactory.UploadService.Save(upload);
saveFileName = (savePath + "/" + saveFileName).Replace("\\", "/").Replace("//", "/");
saveFileName = saveFileName.TrimStart('/');
Response.Write(saveFileName);
}
}
catch (Exception ex)
{
Response.Write(":" + ex.Message); //"An error occured"
}
}
}PK- E孻 App_Code/EWebEditor/ PK- E孻犁记' App_Code/EWebEditor/EWebEditorBrowse.cs ? ? 锘?*
* Copyright 漏 2009-2011 涓囨埛缃戠粶鎶€鏈湁闄愬叕鍙?
* 鏂?浠?鍚嶏細EWebEditorUpload.aspx.cs
* 鏂囦欢鎻忚堪锛欵WebEditor缂栬緫鍣ㄤ笂浼犳枃浠惰绠$悊鍛樼櫥褰曞悗鎵嶈兘娴忚宸蹭笂浼犳枃浠?
*
* 鍒涘缓鏍囪瘑: guoc 2013-05-27
*
* 淇敼鏍囪瘑锛?
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Whir.ezEIP;
using Whir.ezEIP.Web;
namespace EWebEditor
{