ASP中令人震撼的Debug類(VBScript) (轉)
譯者的話:
不知道用寫程式碼的朋友是不是和我有一樣的感受,ASP中最頭疼的就是的時候不方便,我想可能很多朋友都會用這樣的方法“response.write ”,然後輸出相關的語句來看看是否正確。前幾天寫了一個千行的頁面,裡面大概有七八個SUB/FUNCTION,除錯的時候用了有三十幾個response.write ,天,除錯完後把這三十個一個個刪除,累!
今天看到一個ASP中的De類(VBS),試用了一下,絕!
使用方法很簡單:
test.asp
<!--#INCLUDE FILE="debuggingConsole.asp"-->
output="XXXX"
Set debugstr = New debuggingConsole
debugstr.Enabled = true
debugstr.Print "引數output的值", output
'……
debugstr.draw
Set debugstr = Nothing
%>
===================================================
debuggingConsole.asp
Class debuggingConsole
private g_Enabled
private dbg_Show
private dbg_RequestTime
private dbg_FinishTime
private dbg_Data
private dbg_DB_Data
private dbg_AllVars
private dbg_Show_default
private DivSets(2)
'Construktor => set the default values
Private Sub Class_Initialize()
dbg_RequestTime = Now()
dbg_AllVars = false
Set dbg_Data = Server.Create("Scripting.Dictionary")
DivSets(0) = "
DivSets(1) = "
DivSets(2) = "
dbg_Show_default = "0,0,0,0,0,0,0,0,0,0,0"
End Sub
Public Property Let Enabled(bNewValue) ''[bool] Sets "enabled" to true or false
dbg_Enabled = bNewValue
End Property
Public Property Get Enabled ''[bool] Gets the "enabled" value
Enabled = dbg_Enabled
End Property
Public Property Let Show(bNewValue) ''[string] Sets the debugging panel. Where each digit in the string represents a debug information pane in order (11 of them). 1=open, 0=closed
dbg_Show = bNewValue
End Property
Public Property Get Show ''[string] Gets the debugging panel.
Show = dbg_Show
End Property
Public Property Let AllVars(bNewValue) ''[bool] Sets wheather all variables will be displayed or not. true/false
dbg_AllVars = bNewValue
End Property
Public Property Get AllVars ''[bool] Gets if all variables will be displayed.
AllVars = dbg_AllVars
End Property
'******************************************************************************************************************
to:''@SDESCRIPTION">''@SDESCRIPTION: Adds a variable to the debug-informations.
: - label [string]: Description of the variable
: - output [variable]: The variable itself
'******************************************************************************************************************
Public Sub Print(label, output)
If dbg_Enabled Then
if err.number > 0 then
call dbg_Data.Add(ValidLabel(label), "!!! Error: " & err.number & " " & err.Description)
err.Clear
else
uniqueID = ValidLabel(label)
response.write uniqueID
call dbg_Data.Add(uniqueID, output)
end if
End If
End Sub
'******************************************************************************************************************
'* ValidLabel
'******************************************************************************************************************
Private Function ValidLabel(byval label)
dim i, lbl
i = 0
lbl = label
do
if not dbg_Data.Exists(lbl) then exit do
i = i + 1
lbl = label & "(" & i & ")"
l until i = i
ValidLabel = lbl
End Function
'******************************************************************************************************************
'* PrintInfo
'******************************************************************************************************************
Private Sub PrintCookiesInfo(byval DivSetNo)
dim tbl, cookie, key, tmp
For Each cookin Request.Cookies
If Not Request.Cookies(cookie).HasKeys Then
tbl = AddRow(tbl, cookie, Request.Cookies(cookie))
Else
For Each key in Request.Cookies(cookie)
tbl = AddRow(tbl, cookie & "(" & key & ")", Request.Cookies(cookie)(key))
Next
End If
Next
tbl = MakeTable(tbl)
if Request.Cookies.count <= 0 then DivSetNo = 2
tmp = replace(replace(replace(DivSets(DivSetNo),"#sectname#","COOKIES"),"#title#","COOKIES"),"#data#",tbl)
Response.Write replace(tmp,"|", vbcrlf)
end sub
'******************************************************************************************************************
'* PrintSummaryInfo
'******************************************************************************************************************
Private Sub PrintSummaryInfo(byval DivSetNo)
dim tmp, tbl
tbl = AddRow(tbl, "Time of Request",dbg_RequestTime)
tbl = AddRow(tbl, "Elapsed Time",DateDiff("s", dbg_RequestTime, dbg_FinishTime) & " seconds")
tbl = AddRow(tbl, "Request Type",Request.ServerVariables("REQUEST_METHOD"))
tbl = AddRow(tbl, "Status Code",Response.Status)
tbl = AddRow(tbl, "Script Engine",ScriptEngine & " " & ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion & "." & ScriptEngineBuildVersion)
tbl = MakeTable(tbl)
tmp = replace(replace(replace(DivSets(DivSetNo),"#sectname#","SUMMARY"),"#title#","SUMMARY INFO"),"#data#",tbl)
Response.Write replace(tmp,"|", vbcrlf)
End Sub
'******************************************************************************************************************
: Adds the Database-connection object to the debug-instance. To display Database-information
: - oDB [object]: connection-object
'******************************************************************************************************************
Public Sub GrabDatabaseInfo(byval oSQLDB)
dbg_DB_Data = AddRow(dbg_DB_Data, "ADO Ver",oSQLDB.Version)
dbg_DB_Data = AddRow(dbg_DB_Data, "OLEDB Ver",oSQLDB.Properties("OLE DB Version"))
dbg_DB_Data = AddRow(dbg_DB_Data, "DBMS",oSQLDB.Properties("DBMS Name") & " Ver: " & oSQLDB.Properties("DBMS Version"))
dbg_DB_Data = AddRow(dbg_DB_Data, "Provr",oSQLDB.Properties("Provider Name") & " Ver: " & oSQLDB.Properties("Provider Version"))
End Sub
'******************************************************************************************************************
'* PrintDatabaseInfo
'******************************************************************************************************************
Private Sub PrintDatabaseInfo(byval DivSetNo)
dim tbl
tbl = MakeTable(dbg_DB_Data)
tbl = replace(replace(replace(DivSets(DivSetNo),"#sectname#","DATABASE"),"#title#","DATABASE INFO"),"#data#",tbl)
Response.Write replace(tbl,"|", vbcrlf)
End Sub
'******************************************************************************************************************
'* PrintCollection
'******************************************************************************************************************
Private Sub PrintCollection(Byval Name, ByVal Collection, ByVal DivSetNo, ByVal ExtraInfo)
Dim vItem, tbl, Temp
For Each vItem In Collection
if isobject(Collection(vItem)) and Name <> "SERVER VARIABLES" and Name <> "QUERYSTRING" and Name <> "FORM" then
tbl = AddRow(tbl, vItem, "{object}")
elseif isnull(Collection(vItem)) then
tbl = AddRow(tbl, vItem, "{null}")
elseif isarray(Collection(vItem)) then
tbl = AddRow(tbl, vItem, "{array}")
else
if dbg_AllVars then
tbl = AddRow(tbl, "
elseif (Name = "SERVER VARIABLES" and vItem <> "ALL_HTTP" and vItem <> "ALL_RAW") or Name <> "SERVER VARIABLES" then
if Collection(vItem) <> "" then
tbl = AddRow(tbl, vItem, server.HTMLEncode(Collection(vItem))) ' & " {" & TypeName(Collection(vItem)) & "}")
else
tbl = AddRow(tbl, vItem, "...")
end if
end if
end if
Next
if ExtraInfo <> "" then tbl = tbl & "
tbl = MakeTable(tbl)
if Collection.count <= 0 then DivSetNo =2
tbl = replace(replace(DivSets(DivSetNo),"#title#",Name),"#data#",tbl)
tbl = replace(tbl,"#sectname#",replace(Name," ",""))
Response.Write replace(tbl,"|", vbcrlf)
End Sub
'******************************************************************************************************************
'* AddRow
'******************************************************************************************************************
Private Function AddRow(byval t, byval var, byval val)
t = t & "|
AddRow = t
End Function
'******************************************************************************************************************
'* MakeTable
'******************************************************************************************************************
Private Function MakeTable(byval tdata)
tdata = "|
MakeTable = tdata
End Function
'******************************************************************************************************************
: Draws the Debug-panel
'******************************************************************************************************************
Public Sub draw()
If dbg_Enabled Then
dbg_FinishTime = Now()
Dim DivSet, x
DivSet = split(dbg_Show_default,",")
dbg_Show = split(dbg_Show,",")
For x = 0 to ubound(dbg_Show)
divSet(x) = dbg_Show(x)
Next
Response.Write "
Debugging-console: "Call PrintSummaryInfo(divSet(0)) Call PrintCollection("VARIABLES", dbg_Data,divSet(1),"") Call PrintCollection("QUERYSTRING", Request.QueryString(), divSet(2),"") Call PrintCollection("FORM", Request.Form(),divSet(3),"") Call PrintCookiesInfo(divSet(4)) Call PrintCollection("SESSION", Session.Contents(),divSet(5),AddRow(AddRow(AddRow("","Locale ID",Session.LCID & " (&H" & Hex(Session.LCID) & ")"),"Code Page",Session.CodePage),"Session ID",Session.SessionID)) Call PrintCollection("APPLICATION", Application.Contents(),divSet(6),"") Call PrintCollection("SERVER VARIABLES", Request.ServerVariables(),divSet(7),AddRow("","Timeout",Server.ScriptTimeout)) Call PrintDatabaseInfo(divSet(8)) Call PrintCollection("SESSION STATIC OBJECTS", Session.StaticObjects(),divSet(9),"") Call PrintCollection("APPLICATION STATIC OBJECTS", Application.StaticObjects(),divSet(10),"") Response.Write " |
End If
End Sub
'Destructor
Private Sub Class_Tenate()
Set dbg_Data = Nothing
End Sub
End Class
%>
類的說明:
Public Properties Property Let Enabled(bNewValue) [bool] Sets "enabled" to true or false Property Get Enabled [bool] Gets the "enabled" value Property Let Show(bNewValue) [string] Sets the debugging panel. Where each digit in the string represents a debug information pane in order (11 of them). 1=open, 0=closed Property Get Show [string] Gets the debugging panel. Property Let AllVars(bNewValue) [bool] Sets wheather all variables will be displayed or not. true/false Property Get AllVars [bool] Gets if all variables will be displayed.
Public Methods public sub Print (label, output)
Adds a variable to the debug-informations. public sub GrabDatabaseInfo (byval oSQLDB)
Adds the Database-connection object to the debug-instance. To display Database-information public sub draw ()
Draws the Debug-panel
Methods Detail public sub Print (label, output) Parameters: - label [string]: Description of the variable
- output [variable]: The variable itself
public sub GrabDatabaseInfo (byval oSQLDB) Parameters: - oSQLDB [object]: connection-object
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-963092/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ASP中一個字串處理類(VBScript) (轉)字串
- VBScript中引用ASP的字串變數字串變數
- 在VBScript中使用類(三) (轉)
- 在VBScript中使用類(四) (轉)
- Omi v1.0震撼釋出 - 令人窒息的Web元件化框架Web元件化框架
- asp中的cookie (轉)Cookie
- 國內外ERP應用成功率堪憂 調查結果令人震撼(轉)
- VBScript 錯誤資訊一覽 (轉)
- VBScript函式補習課 (轉)函式
- 求助!import com.jdon.util.Debug;中的Debug的類是什麼樣的啊!!!!Import
- to debug asp.net mvc4ASP.NETMVC
- 在ASP中使用簡單Java類 (轉)Java
- ASP 中 Split 函式的例項 (轉)函式
- 【Microbar 】Asp.net 類中使用中括號([......])的作用ASP.NET
- 在Asp.Net中實現類似DWR的功能ASP.NET
- C++中類及類的定義 (轉)C++
- Delphi中的類和物件 (轉)物件
- ASP專案中的公共翻頁模組 (轉)
- ASP.NET中的DataGrid的屬性 (轉)ASP.NET
- 在客戶端用JAVASCRIPT或VBSCRIPT生成WORD文件 (轉)客戶端JavaScript
- ADO資料與XML資料間的轉換的類(ASP實現) (轉)XML
- VBScript Scripting Engine初探
- WMI 應用——用 VBScript 編寫類似 ipconfig 的工具_終南的IT空間
- asp程式設計經驗談:ASP檔案中的安全問題(轉)程式設計
- 在ASP檔案中呼叫DLL (轉)
- RMAN中的 debug調式命令
- 教程中 令人頭疼的 前端流安裝前端
- 玩轉ASP.NET Core中的日誌元件ASP.NET元件
- ASP中容易出錯的Null型別轉換Null型別
- C#如何使用 Debug 和 Trace 類C#
- ASP編寫完整的一個IP所在地搜尋類 (轉)
- 類似 MSDN 左邊導航樹效果的實現! [JavaScript + ASP] (轉)JavaScript
- 首款宇宙星際探索類卡牌遊戲震撼上線遊戲
- shell vbscript xml程式設計XML程式設計
- ASP中函式呼叫對引數的影響 (轉)函式
- TypeScript 中令人迷惑的物件型別:Object、{} 和 objectTypeScript物件型別Object
- C#中File 類的用法 轉載C#
- 轉:類似SQL中的split函式SQL函式