Hello,
I have a number of different webparts on a page. A menu webpart a page listing webpart and a add page webpart which adds a page to the database which then populates the menu and page list.
My problem is the order ASP.NET seems to do its postbacks. Currently the 2 Page_Load events for the menu and page list webpart are called (which bind the data) then the OnClick event for the add page webpart is called. So the new page is not being added to the menu or page list.
Is there any way to call the BindData method (which does all the DataBinding) in these other two webparts from the OnClick method in the third webpart?
many thanks in advance
Richard