Where are you loading your controls in your webpart code? Page_Load is too late in most cases for using portal engine development. This typically needs to happen on every page load in the event below:
public override void OnContentLoaded()
{
base.OnContentLoaded();
// do your work here
}