如果SqlDataSource
超时,如何取消选择SelectCommand
中的行?
我知道我可以设置CommandTimeout
属性但我想处理错误并强制页面在SqlDataSource
超时时继续运行。
了解更多信息:
在我的网页中,ListView
使用SqlDataSource
结果,但此结果不是我的主要内容,只是推荐主要内容的类似列表。
答案 0 :(得分:0)
我找到了解决方案:在Selecting
超时后,SqlDataSource
Selected
事件开始运行。
Protected Sub SqlDataSource1_Selected(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.SqlDataSourceStatusEventArgs) Handles SqlDataSource1.Selected
If e.Exception is nothing=false andalso e.Exception.InnerException.ToString.ToLower.Contains("timed out") Then
ListView1.Visible = False
e.ExceptionHandled = True
End If
End Sub