| 
 分割字符串实例 
发布时间:2015年2月5日 作者:未知 查看次数:1678 
分割字符串实例ASP中Split分割字符串函数的实例用法 自:http://www.jb51.net/article/34738.htm ASP中Split函数的用法  代码如下: 
mystr="1,2,3,4,5" mystr=split(mystr,",") for i=0 to ubound(mystr) response.write mystr(i) next '返回值为123456 mystr="xlei.net/http/student/x/index.asp"  mystr="1批在2批在3批在4批是在5批在"  
 参数 描述  设置  引用来自 asp端验证是否包含非法字符 代码如下: 
username=replace(trim(request.form("username")),"'","''") password=replace(trim(request.form("password")),"'","''") if instr(username,"%") or instr(username,"#") or instr(username,"?") or instr(username,"|") then  | 
|
	
  |