摘要:
过滤超级链接复制代码 代码如下:Function RegRemoveHref(HTMLstr)Set ra = New RegExpra.IgnoreCase = Truera.Global = Truera.Pattern = "<A[^>]+>(.+?)<\/A>"RegRemoveHref = ra.replace(HTMLstr,"$1")END Functi... 阅读全文
摘要:
RegExp对象提供简单的正则表达式支持功能。 RegExp对象的用法: 以下为引用的内容: Function RegExpTest(patrn, strng) Dim regEx, Match, Matches ' 建立变量。 Set regEx = New RegExp ' 建立正则表达式。 regEx.Pattern = patrn ' 设置模式。 regEx.IgnoreCase = Tr... 阅读全文
摘要:
'这里用的是正则式Set objRegExp = New Regexp '建立对象objRegExp.IgnoreCase = True '大小写忽略objRegExp.Global = True '全局为真objRegExp.Pattern = "http://.+?" '匹配字段set mm=objRegExp.Execute(str) '执行查找,str为输入参数For Each M... 阅读全文
摘要:
1.为HTML客户端控件增加回发功能一般页面中的按钮并不都是type=submit类型的,大部分是type=button类型的按钮,把上面5.2.2.1节的代码段中的type=submit修改成type=button,修改后的代码如下:由于此代码段中的按钮的type属性由sumbit改成了一般按钮类型button,则此按钮输出后将不再具有回发到服务端的功能。为了使一般按钮也具有回发的功能,ASP.... 阅读全文
摘要:
ASP.NET APPLICATION要使用原来的ASP用户系统,于是问题出现了,ASP APPLICATION怎样才能让用户登录的状态及用户信息在ASP.NET中依然有效呢。于是我们考虑用构造FORM来自动提交传递ASP应用中的Session变量。例子如下ASP应用URL为http://127.0.0.1/asp/,并在ASP.NET应用中的web.config设定 <!--设定ASP应用... 阅读全文
摘要:
<%@ Language=VBScript %><% Option Explicit %><% Response.Write "在你的程序中一共使用了 " & Session.Contents.Count & _ " 个Session变量<P>" Dim strName, iLoop For Each strName in Session.... 阅读全文
摘要:
在C#中循环显示SESSIOn:Response.Write("<br>Session的所有值:<br>"); foreach (string obj in Session.Contents) { Response.Write(obj.ToString() + ":" + Session[obj] + "<br>"); }在C#中循环显示CookiEs: Res... 阅读全文