Twice postback in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T20:18:02Z http://stackoverflow.com/feeds/question/1047030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net 1 Twice postback in ASP.NET IrfanRaza 2009-06-26T02:08:00Z 2009-09-16T08:42:30Z <p>Hi,</p> <p>My page is fully postback twice. I am using master page with AJAX. The structure of master page is as follows.</p> <p>+---------------------------------------------+</p> <p>| Web User Control with AJAX Tab Control |</p> <p>+---------------------------------------------+</p> <p>| | | |</p> <p>| Col1 | ContentPlaceHolder | Col3 |</p> <p>| | | |</p> <p>| | | |</p> <p>+---------------------------------------------+</p> <p>The web user control contains the AJAX Tab Container with AutoPostback on.</p> <p>I have created several ASPX pages using this masterpage.</p> <p>The content place holder also gets a web user control depending upon page.</p> <p>Whenever I jump on a page by clicking on tab the page is fully postbacked twice. I dont understand whats the reason. That makes viewing reports cumbersome as it requires double time.</p> <p>Please visit - <a href="http://softwaregenius.net/ivnew4" rel="nofollow">http://softwaregenius.net/ivnew4</a> to get idea. I am not able to give loginid.</p> http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net/1047062#1047062 0 Answer by colithium for Twice postback in ASP.NET colithium 2009-06-26T02:22:30Z 2009-06-26T02:22:30Z <p>We might need more information but how are you're Update panels laid out and configured? Do you have update panels?</p> <p>If you don't have update panels, the auto post back will occur and it will post back the entire page. If the control is surrounded by an update panel, only the update panel is re-rendered.</p> http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net/1177215#1177215 0 Answer by TWith2Sugars for Twice postback in ASP.NET TWith2Sugars 2009-07-24T12:00:51Z 2009-07-24T12:00:51Z <p>Double post backs for me tend to be missing resources or image tags without a src - E.G. </p> <pre><code>&lt;img src=""/&gt; </code></pre> http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net/1177242#1177242 0 Answer by MatthewMartin for Twice postback in ASP.NET MatthewMartin 2009-07-24T12:04:32Z 2009-07-24T12:04:32Z <p>When Page directive autoeventwireup is true and you attach an event OnInit to things like Page_Load, those events will be raised twice, making it look like double postback. It could be semething else, too.</p> http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net/1177281#1177281 0 Answer by Edwin Tai for Twice postback in ASP.NET Edwin Tai 2009-07-24T12:14:35Z 2009-07-24T12:14:35Z <p>Hi<br/> Is there any code in the page that make you postback twice.<br/> Try the use the method if(!page.ispostback){}<br/> I think it is not because of AJAX.</p> http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net/1431743#1431743 0 Answer by anonymous for Twice postback in ASP.NET anonymous 2009-09-16T08:42:30Z 2009-09-16T08:42:30Z <p>I was in the exact situation and got frust for quite a while. Thought someone might still find this useful. My page involved a lot of custom ajax call (not update panel), and when post back for saving ( implementing request[".."] style not control.value style - cause the controls was create dynamically thru Ajax ), postback happened twice. There are 2 solutions and both are simple:</p> <ol> <li>Set AutoEventWireup to false (this will also disable some custom control that was wired up for instance databinded datagrid, like my case)</li> <li>for those who required AutoEventWireup to be true, just make sure all post back controls or buttons is not server control instead they must be standard HTML tags and should NOT have runat="server".</li> </ol> <p>That's it!</p>