I have a website where if you launch the main page, either while debugging in Visual Studio or when published, it will not fire the click events of buttons unless you have the page explicitly declared in the URL.
i.e. on http://localhost:58599/Default.aspx they work, but http://localhost:58599/ they do not. Page_Load events are fired in both instances.
The page uses a master page and neither the click events on it nor on Default.aspx will work in this scenario.
What could be causing this problem? I can provide code if needed but I'm not sure which code would be relevant here.