我的MSSQL数据库表中有某些列行,我需要在页面加载后继续检查,以查看位值是False还是True。我正在使用ASPX页面和VB代码文件。
我尝试使用具有三秒休眠间隔的While循环虽然不起作用。我应该怎样做才能每3秒重新检查一次列行值?
ds = dataFetcher.fillDataset("Procedure1 '" & id & "'", ConfigurationManager.ConnectionStrings("MyString").ConnectionString, False)
While 1
If ds.Tables(0).Rows(0).Item("machine_ready") = True Then
Response.Redirect("machines.aspx") 'Do this when machine is ready
End If
Thread.Sleep(3000) 'Wait three seconds
End While