Question: How Come the Button Click on the aspx page that was transferred to does not fire correctly, after the first aspx page transferred focus to it using the Server.Transfer() method in C#.
The Answer: When the button is clicked in the transferred page after the Server.Transfer, it runs the page_load() in the transferred page instead of the button_click(). If the button is clicked a second time in the transferred page, then the button_click() fires.