You're probably having problems because the buttons on your control are not added to the aspx's control container. It would probably be best to change any asp.net button controls to HTML buttons or links and handle any processing with javascript, handling "postbacks" with GET/POST query strings.
If you were able to get the control's buttons to postback properly, whatever page contains the iframe with the user control will be lost. i.e. you'd have to figure out some way to postback your aspx, and dynamically load the correct data into your generated control.
Instead of going through all that trouble, why not just add your control to an update panel? Is the dynamic content large?