<!--#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. ' ********************************************************************...[ 查看全文 ]
本文章有两文件组成 test.asp 测试演示文件 clsrsa.asp 实现rsa加密与解密的vbs类文件 下面是代码: 1. test.asp <% rem 文章标题:在asp中通过vbs类实现rsa加密与解密 rem 收集整理:yanek rem 联系:aspboy@263.net % <%Option Explicit% <!--#INCLUDE FILE="clsRSA.asp"-- <% Dim LngKeyE Dim LngKeyD Dim LngKeyN Dim StrMessage Dim ObjRSA If Not Request.Form = "" Then LngKeyE = Re...[ 查看全文 ]
vbs:把一段文字中指定字符颜色变成红色的正则 function c(Tstr,Word) Dim re Set re = new RegExp re.IgnoreCase =True re.Global=True re.pattern = "("&Word&")" c=re.replace(Tstr,"font style='color:red;'$1/font") End function 调用方法 response.write c("内容字串","要显示为红色的字") 比如 % function c(Tstr,Word) Dim re...[ 查看全文 ]
不过VB.NET确实有许多VB6没有的新功能,代码的自动排版就是一项,这也正是我们今天要实现的功能——VB代码格式化。 先看下实现的效果: 格式化前: 代码如下: For i = 0 To WebBrowser1.Document.All.length - 1 If WebBrowser1.Document.All(i).tagName = "HTML" Then strContent = strContent & WebBrowser1.Document.All(i).innerHTML Exit For End If Next 格式化后: 代码如下: For ...[ 查看全文 ]