当前位置: 代码迷 >> ASP >> 如何限制Request接收数据的个数?
  详细解决方案

如何限制Request接收数据的个数?

热度:590   发布时间:2012-04-16 16:20:04.0
怎么限制Request接收数据的个数? 在线等
怎么限制Request接收数据的个数?

比如   123.asp?id=1,2,3,4,5   ……

怎么限制ID后边的参数的个数?

------解决方案--------------------
id = split(request( "id "), ", ")

ubound(id)→就是你要的参数个数了
  相关解决方案