funlib.asp
来自「新闻发布系统」· ASP 代码 · 共 10 行
ASP
10 行
<%
'#######过滤目录
Function FilterPath(strPath)
strPath=Replace(Trim(strPath),"../","")
strPath=Replace(Trim(strPath),"..\","")
strPath=Replace(strPath,"\..","")
strPath=Replace(strPath,"/..","")
FilterPath=strPath
End Function
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?