myTable.Compute("Sum(tab(0))", "")  这样是正确的
但是目前这样
For i = 0 To 13
    dim inttemp as double
    inttemp = myTable.Compute("Sum(tab(i))", "")
    response.write inttemp 
Next
这样就不行,请问Compute这里该怎么取值啊???