if trim(user)&"x"="x"or trim(pass)&"x"=&qu
为什么总是有这么“”,& 字符号。。。。 真是搞不懂。。。。
“”这个是代表里面的是字符串 & 这个是用来连接字符串和变量 的连接符
例如
<%
dim a
a = 12
response.write(a)
response.write("a")
%>
第一个是输出12 第二个是输出a
[ 本帖最后由 a124211741 于 2011-4-4 23:45 编辑 ]