调用类方法传参数问题Set st New hellost.list01(aaa)Class helloPublic sub list01(name)response.wr
调用类方法传参数问题
Set st = New hello
st.list01("aaa")
Class hello
Public sub list01(name)
response.write name
End sub
End class
报错,这样传参数不可以吗?
[解决办法]
st.list01 "aaa"
不用括号
