VB ASP在一个If Then语句中声明多个变量

时间:2015-09-17 16:02:00

标签: vb.net visual-studio if-statement asp-classic

我今天在ASP网站上使用一些旧的VB。

我的代码如下:

arrRows = Split(sRows,",")
If arrRows(0) = "honesty" Then
honesty1= arrRows(1)
End If
If arrRows(0) = "honesty" Then
honesty2= arrRows(2)
End If
If arrRows(0) = "honesty" Then
honesty3= arrRows(3)
End If

我想将其缩小到一个If Then语句,我可以在单个If Then语句中分配多个变量吗?如果是这样,怎么样?

谢谢!

1 个答案:

答案 0 :(得分:1)

是的,您可以在If Then语句中添加1个变量。

arrRows = Split(sRows,",")
If arrRows(0) = "honesty" Then
    honesty1= arrRows(1)
    honesty2= arrRows(2)
    honesty3= arrRows(3)
End If