asp下经常用到的代码
更新时间:2008年01月09日 13:45:45 作者:
点击提示“确定”与“取消”提示框,主要用于删除确认
点击提示“确定”与“取消”提示框
onclick='{if(confirm("您确定删除吗?此操作将不能恢复!")){return true;}return false;}'
删除.LDB文件
<%
Application.Contents.Removeall()
%>
将HTML格式转换为纯文本格式
<%
Function RemoveHTML(strHTML)
Dim objRegExp, Match, Matches
Set objRegExp = New Regexp
objRegExp.IgnoreCase = True
objRegExp.Global = True
'取闭合的<>
objRegExp.Pattern = "<.+?>"
'进行匹配
Set Matches = objRegExp.Execute(strHTML)
' 遍历匹配集合,并替换掉匹配的项目
For Each Match in Matches
strHtml=Replace(strHTML,Match.Value,"")
Next
RemoveHTML=strHTML
Set objRegExp = Nothing
End Function
%>
调用
<%=RemoveHTML(你的字段)%>
25、当前页地址
<%
response.write "http://"&Request.ServerVariables("server_name")&Request.ServerVariables("script_name")
%>
onclick='{if(confirm("您确定删除吗?此操作将不能恢复!")){return true;}return false;}'
删除.LDB文件
<%
Application.Contents.Removeall()
%>
将HTML格式转换为纯文本格式
<%
Function RemoveHTML(strHTML)
Dim objRegExp, Match, Matches
Set objRegExp = New Regexp
objRegExp.IgnoreCase = True
objRegExp.Global = True
'取闭合的<>
objRegExp.Pattern = "<.+?>"
'进行匹配
Set Matches = objRegExp.Execute(strHTML)
' 遍历匹配集合,并替换掉匹配的项目
For Each Match in Matches
strHtml=Replace(strHTML,Match.Value,"")
Next
RemoveHTML=strHTML
Set objRegExp = Nothing
End Function
%>
调用
<%=RemoveHTML(你的字段)%>
25、当前页地址
<%
response.write "http://"&Request.ServerVariables("server_name")&Request.ServerVariables("script_name")
%>
相关文章
在asp中使用js的encodeURIComponent方法
encodeURIComponent 方法返回一个已编码的 URI。如果您将编码结果传递给 decodeURIComponent,那么将返回初始的字符串2012-03-03ASP运行出错:缺少对象: ''xmlDoc.documentElement''错误解决方法
ASP运行出错:缺少对象: 'xmlDoc.documentElement'错误解决方法,需要的朋友可以参考下2012-03-03ImageMagickObject获取图片的信息无返回值的解决办法
这篇文章主要介绍了ImageMagickObject获取图片的信息无返回值的解决办法,非常简单,加上format参数即可,需要的朋友可以参考下2015-05-05
最新评论