Answer:
By checking the IsPostBack property. If IsPostBack is True, the page has been posted back.
Example
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { // code } }