Hello,
In modules I have the following code lines:
if (Page.IsPostBack == false) {
BindData();
Now I have made a new module, with a datagrid with paging.
I see a little problem when using the module with some others.
Let's say we use the events module with some events and the new module on the same page.
After using the paging option I don't see the events inside the events module anymore.
When I allways do a BindData(); for the events module I don't get this problem.
Is it "bad" to do allways a databind?
Thanks!