VBS、ASP代码语法加亮显示的类(2)

zhaobing199903

zhaobing199903

2016-01-29 20:22

VBS、ASP代码语法加亮显示的类(2),VBS、ASP代码语法加亮显示的类(2)
<!--#include file="token.asp"--
<% ' *************************************************************************
' This is all test/example code showing the calling syntax of the
' cBuffer class ... the interface to the cBuffer object is quite simple.
'
' Use it for reference ... delete it ... whatever.
' *************************************************************************

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/asp/)

REM This is a rem type comment just for testing purposes!

' This variable will hold an instance of the cBuffer class
Dim objBuffer

' Set up the error handling
On Error Resume Next

' create the instance of the cBuffer class
Set objBuffer = New cBuffer

' Set the PathToFile property of the cBuffer class
'
' Just for kicks we'll use the asp file that we created
' in the last installment of this article series for testing purposes
objBuffer.PathToFile = "../081899/random.asp" '这是文件名啦。

' Here's an example of how to add a new keyword to the keyword array
' You could add a list of your own function names, variables or whatever...cool!
' NOTE: You can add different HTML formatting if you like, the <strong
' attribute will applied to all keywords ... this is likely to change
' in the near future.
'
'objBuffer.AddKeyword "response.write", "<font color=RedResponse.Write</font"

' Here are examples of changing the table background color, code color,
' comment color, string color and tab space properties
'
'objBuffer.TableBGColor = "LightGrey" ' or
'objBuffer.TableBGColor = "#ffffdd" ' simple right?
'objBuffer.CodeColor = "Red"
'objBuffer.CommentColor = "Orange"
'objBuffer.StringColor = "Purple"
'objBuffer.TabSpaces = " "

' Call the ParseFile method of the cBuffer class, pass it true if you want the
' HTML contained in the page output or false if you don't
objBuffer.ParseFile False '注意:显示代码的response.write已经在class中。这里调用方法就可以了。

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/asp/)


' Check for errors that may have been raised and write them out
If Err.number < 0 Then
Response.Write Err.number & ":" & Err.description & ":" & Err.source & "<br"
End If

' Output the processing time and number of lines processed by the script
Response.Write "<strongProcessing Time:</strong " & objBuffer.ProcessingTime & " seconds<br"
Response.Write "<strongLines Processed:</strong " & objBuffer.LineCount & "<br"

' Destroy the instance of our cBuffer class
Set objBuffer = Nothing
%

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/asp/)
展开更多 50%)
分享

猜你喜欢

VBS、ASP代码语法加亮显示的类(2)

ASP
VBS、ASP代码语法加亮显示的类(2)

VBS、ASP代码语法加亮显示的类(1)

ASP
VBS、ASP代码语法加亮显示的类(1)

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

vbs(asp)的栈类

ASP
vbs(asp)的栈类

利用vbs类实现css按钮的代码

Web开发
利用vbs类实现css按钮的代码

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

ASP语法注释

Web开发
ASP语法注释

ASP基本语法

ASP
ASP基本语法

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

用自定义函数获取汉字的首字母

用自定义函数获取汉字的首字母

Photoshop教程:路径工具绘制可爱花朵

Photoshop教程:路径工具绘制可爱花朵
下拉加载更多内容 ↓