c# 自定义异常类
using System; using System.Web; using System.IO; namespace Common { /// summary /// ExceptionLog 的摘要说明。 /// /summary public class ExceptionLog : ApplicationException { public ExceptionLog(string message) : base(message) { Init(); Log
using System;
using System.Web;
using System.IO;
namespace Common
{
///
/// ExceptionLog 的摘要说明。
///
public class ExceptionLog : ApplicationException
{
public ExceptionLog(string message)
: base(message)
{
Init();
Log();
}
public ExceptionLog(Exception inner)
{
ex = inner;
Init();
Log();
}
public Exception ex = null;
public override string Message
{
get
{
string msg = base.Message;
if (ex != null)
{
msg = ex.Message;
}
return msg;
}
}
string username = string.Empty;
public string UserName
{
get
{
return username;
}
set
{
username = value;
}
}
string userAgent = string.Empty;
public string UserAgent
{
get
{
return userAgent;
}
set
{
userAgent = value;
}
}
string ipAddress = string.Empty;
public string IPAddress
{
get
{
return ipAddress;
}
set
{
ipAddress = value;
}
}
string httpReferrer = string.Empty;
public string HttpReferrer
{
get
{
return httpReferrer;
}
set
{
httpReferrer = value;
}
}
string httpVerb = string.Empty;
public string HttpVerb
{
get
{
return httpVerb;
}
set
{
httpVerb = value;
}
}
string httpPathAndQuery = string.Empty;
public string HttpPathAndQuery
{
get
{
return httpPathAndQuery;
}
set
{
httpPathAndQuery = value;
}
}
DateTime dateCreated;
public DateTime DateCreated
{
get
{
return dateCreated;
}
set
{
dateCreated = value;
}
}
void Init()
{
DateCreated = DateTime.Now;
if (HttpContext.Current.Request.UrlReferrer != null)
httpReferrer = HttpContext.Current.Request.UrlReferrer.ToString();
if (HttpContext.Current.Request.UserAgent != null)
userAgent = HttpContext.Current.Request.UserAgent;
if (HttpContext.Current.Request.UserHostAddress != null)
ipAddress = HttpContext.Current.Request.UserHostAddress;
try
{
if (HttpContext.Current.Request != null
&& HttpContext.Current.Request.RequestType != null)
httpVerb = HttpContext.Current.Request.RequestType;
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex.ToString());
}
if (HttpContext.Current.Request != null
&& HttpContext.Current.Request.Url != null
&& HttpContext.Current.Request.Url.PathAndQuery != null)
httpPathAndQuery = HttpContext.Current.Request.Url.PathAndQuery;
if (HttpContext.Current.Request != null
&& HttpContext.Current.Request.UrlReferrer != null
&& HttpContext.Current.Request.Url.PathAndQuery != null)
httpReferrer = HttpContext.Current.Request.UrlReferrer.ToString();
}
public void Log()
{
string LogName = DateTime.Now.ToShortDateString() + ".txt";
string FilePath = HttpContext.Current.Request.PhysicalApplicationPath + "//Log//" + LogName;
if (!File.Exists(FilePath))
{
using (StreamWriter sw = File.CreateText(FilePath))
{
sw.WriteLine("Fields :Value");
sw.WriteLine();
}
}
using (StreamWriter sw = File.AppendText(FilePath))
{
sw.WriteLine("======================================");
sw.WriteLine("DateTime :" + this.DateCreated);
sw.WriteLine("Message :" + this.Message);
sw.WriteLine("IPAddress :" + this.IPAddress);
sw.WriteLine("HttpReferrer :" + this.HttpReferrer);
sw.WriteLine("HttpVerb :" + this.HttpVerb);
sw.WriteLine("HttpPathAndQuery :" + this.HttpPathAndQuery);
sw.WriteLine("UserName :" + this.UserName);
sw.WriteLine("UserAgent :" + this.UserAgent);
sw.WriteLine();
}
}
}
}
//页面引用
try
{
}
catch (Exception ex)
{
throw new Common.ExceptionLog(ex);
}

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

PHP在數據庫操作和服務器端邏輯處理中使用MySQLi和PDO擴展進行數據庫交互,並通過會話管理等功能處理服務器端邏輯。 1)使用MySQLi或PDO連接數據庫,執行SQL查詢。 2)通過會話管理等功能處理HTTP請求和用戶狀態。 3)使用事務確保數據庫操作的原子性。 4)防止SQL注入,使用異常處理和關閉連接來調試。 5)通過索引和緩存優化性能,編寫可讀性高的代碼並進行錯誤處理。

PHP用於構建動態網站,其核心功能包括:1.生成動態內容,通過與數據庫對接實時生成網頁;2.處理用戶交互和表單提交,驗證輸入並響應操作;3.管理會話和用戶認證,提供個性化體驗;4.優化性能和遵循最佳實踐,提升網站效率和安全性。

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

PHP起源於1994年,由RasmusLerdorf開發,最初用於跟踪網站訪問者,逐漸演變為服務器端腳本語言,廣泛應用於網頁開發。 Python由GuidovanRossum於1980年代末開發,1991年首次發布,強調代碼可讀性和簡潔性,適用於科學計算、數據分析等領域。

PHP的核心優勢包括易於學習、強大的web開發支持、豐富的庫和框架、高性能和可擴展性、跨平台兼容性以及成本效益高。 1)易於學習和使用,適合初學者;2)與web服務器集成好,支持多種數據庫;3)擁有如Laravel等強大框架;4)通過優化可實現高性能;5)支持多種操作系統;6)開源,降低開發成本。

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP適用於Web開發和內容管理系統,Python適合數據科學、機器學習和自動化腳本。 1.PHP在構建快速、可擴展的網站和應用程序方面表現出色,常用於WordPress等CMS。 2.Python在數據科學和機器學習領域表現卓越,擁有豐富的庫如NumPy和TensorFlow。
