我在ASP.NET DataBind()
上使用GridView
,它会引发ThreadingAbort
异常,但仅当GridView
当前绑定到空(但不为空)DataTable
并在将其链接到另一个空(但不为空)DataBind()
后调用DataTable
。
DataTable dt = ... // obtain DataTable with 0 rows
MyGridView.DataSource = dt;
MyGridView.DataBind(); // errors on second time around
为什么会发生这种情况以及如何制止它?感谢
答案 0 :(得分:0)
发现问题。
它在_OnDataBound(Object sender, EventArgs e)
事件处理程序中抛出异常。