ASP常用函数:WriteLn() PrintLn()_ASP教程
推荐:ASP常用函数:getIMG()目前还是有BUG的,最新的测试页面在: http://www.reallydo.com/getimg.asp 正则分析页面在: http://jorkin.reallydo.com/article.asp?id=380 发现BUG请在后面留言,谢谢. 1.31修正 src=后面有空格不能正确匹配.已修正. src=''为空时出错.已修正. 发现BUG: 图片路径有多个
程序代码
<%
'功能:输出字符串加换行
'来源:http://www.cncms.com/asp.asp
Function WriteLn(sString)
Response.Write( sString & vbCrLf )
End Function
%>
程序代码
<%
'功能:输出字符串加HTML代码<br />
'来源:http://www.cncms.com/asp.asp
Function PRintLn(sString)
Response.Write( sString & vbCrLf & "<br />" & vbCrLf)
End Function
%>
分享:ASP标记的字符串指定变色不区分大小写普通的替换函数 代码如下: public function HighLight(S,F) dim tL,tM,tR,k tL= tM= tR=S k=instr(1,tR,F,1) do while k0 tL=tL left(tR,k-1) tM=mid(tR,k,len(F)) tL=tL span style='color:red' tM /span tR=right(tR,Len(tR)-len(F)-k+1) k=instr(1,tR,F,1) loop Hig
- 相关链接:
- 教程说明:
ASP教程-ASP常用函数:WriteLn() PrintLn()。