I have a user control that I am using on my web pages. Is there a way to make this user control post first?

This is the code that I am using to bring in the control.
VB Code:
  1. Dim ctl As Programs
  2.         ctl = CType(Me.LoadControl("Programs.ascx"), Programs)
  3.         ctl.Attributes.Add("style", "left:1;top: 1;width:100; height:100;")
  4.         Me.FindControl("Form1").Controls.Add(ctl)
I have this code first thing in my Page_Load event but the rest of the objects on my web pages appear before the objects in my user control appear on the web pages.

Thanks!