当前位置: 代码迷 >> ASP >> 调用类方法传参数有关问题
  详细解决方案

调用类方法传参数有关问题

热度:182   发布时间:2012-05-12 15:39:31.0
调用类方法传参数问题
Set st = New hello
st.list01("aaa")



Class hello

Public sub list01(name)
response.write name
End sub 

End class

报错,这样传参数不可以吗?

------解决方案--------------------
st.list01 "aaa"
不用括号
  相关解决方案