怎样建立Session数组及怎样调用数组中的元素?(100分)

  • 主题发起人 主题发起人 peakcao
  • 开始时间 开始时间
P

peakcao

Unregistered / Unconfirmed
GUEST, unregistred user!
在ASP中建立和调用Session数组的语法格式是?
请提供Javascript 和 VBscript两种脚本的语法格式
谢谢
 
VB我不会, C#是这样的.
int [] arInt = new int[10]{0,1,2,3,4,5,6,7,8,9};
Session.Add("arint", arInt);
调用:
int [] arInt;
arInt = (int [])Session["arint"];
if (arInt == null)
{
// 错了...
}
 
后退
顶部