My page is fully postback twice. I am using master page with AJAX. The structure of master page is as follows.
+---------------------------------------------+
| Web User Control with AJAX Tab Control |
+---------------------------------------------+
| | | |
| Col1 | ContentPlaceHolder | Col3 |
| | | |
| | | |
+---------------------------------------------+
The web user control contains the AJAX Tab Container with AutoPostback on.
I have created several ASPX pages using this masterpage.
The content place holder also gets a web user control depending upon page.
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.
Please visit – http://softwaregenius.net/ivnew4 to get idea. I am not able to give loginid.
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.