我们有一个从表中获取数据的存储过程,让我们从一个 db1 中将其称为 table1 并填充一个表,在 db2 中称为 table2。
我们安排这个存储过程每隔 5 分钟执行一次这个功能。这工作正常。
鉴于用户大多在执行其他管理功能时离开他们的应用程序,我们创建了一个刷新按钮,在单击该按钮时刷新 GridView。
Protected Sub Refresh_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Refresh.Click
' Clean up text to return the GridView to it's default state
strSearch.Text = ""
SearchString = ""
gridView1.DataBind()
End Sub
我们希望同时单击此刷新按钮以使存储过程更新 table2 并同时刷新 GridView。
我知道gridview1.Databind()
使用 table2 中的最新数据刷新 GridView,但是在刷新 GridView 之前,如何确保首先使用存储的 proc 使用 table1 中的数据更新 table2。