·您的位置: 首页 » 资源教程 » 编程开发 » ASP » VBS、ASP代码语法加亮显示的类(2)

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

类别: ASP教程  评论数:0 总得分:0
<!--#include file="token.asp"-->
<%
\' 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=Red>Response.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中。这里调用方法就可以了。


\' 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 "<strong>Processing Time:</strong> " & objBuffer.ProcessingTime & " seconds<br>"
Response.Write "<strong>Lines Processed:</strong> " & objBuffer.LineCount & "<br>"

\' Destroy the instance of our cBuffer class
Set objBuffer = Nothing
%>
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1