I'm getting a "System.StackOverflowException was unhandled" exception here:
when the showDetailsView (a DetailsView component) is made visible by the detailsButton_Click event sub... Why is this happening, and how can I fix this issue?Code:Private Sub showDetailsView_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles showDetailsView.DataBound showDetailsView.DataBind() End Sub


Reply With Quote

What I should have done was place the showDetailsView.DataBind() line in my detailsButton_Click sub, to ensure that it is actually displaying the data pertinent to the latest user seletion. Guess that's what happens to my thought processes when I stay up three hours later than usual!
