Hi All, I am deploying a new ASP.NET application on Winhost. In my tests I detected a strange behaviour in one of my pages. In code-behind there are some database actions, all executed in PageLoad event under (!IsPostback) condition. By reading the log messages that my code writes, I know that the DB actions were all completed, and this is confirmed when I verify data into DB. After DB actions a summary page (text taken from log file) should be shown, but nothing happens, the browser keeps waiting for the page. I also want to point out that: the same page and same code work perfectly in my local development environment, that is: the summary page shows correctly; all code-behind is gathered in PageLoad event handler, plus a method called by the handler, and I know from the log file that it is correctly executed. Any idea to explain this? Thanks in advance Mike
Here are some links to the ASP.NET Page Life Cycle: http://msdn.microsoft.com/en-us/library/ms178472(v=vs.90).aspx http://www.asp.net/web-forms/videos/building-35-applications/page-lifecycle-events http://www.tutorialspoint.com/asp.net/asp.net_life_cycle.htm I'm not sure what your page is doing exactly, but the summary page should only show the first time a page is rendered (or re-loaded) and not under any post back conditions from the way you describe it.