passengers=10
Do while i <= passengers
total = total * i
i = i + 1
' If CheckState=0 and Parameter("Doctor")=1 Then
' Reporter.ReportEvent micWarning, "本地参数设置应该是可编辑医生",""
' End If
' DataTable.SetNextRow
Loop
上述一段是一个ACTION中的内容,从执行时总报 "loop"缺少"do"
我试了很多情况,基本上是写了一段do....loop结构后,如果中间加入其它语句,就会产生上述问题。