So I have a Control that binds some data. Problem is, the data is getting loaded right now on page load and I need everything else to load first so some data base changes happen before my bind method gets called. Right now I have this
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
bindConData()
End Sub
I've been searching for about an hour. I basically need that to fire in the load complete method, but controls don't have that. How do I make that fire in the load complete? Thanks,
Go to the complete details ...