以下の if ステートメントでは、最初のテーブルの最初の行/列に文字列が含まれているかどうかを確認する必要がありますが、テーブルに行がない場合は例外が発生します。
例外は次のとおりです。
"System.IndexOutOfRangeException = {"位置 0 に行がありません。"}"
コードスニペット:
'if the table has no rows then an exception happens here
If myDataSet.Tables(0).Rows(0)(0).ToString <> "MyMessage" then
'do this - redirect
Else
myDataSet.Tables(0).Rows(0)(0) = "no message"
End If
助けていただけますか?