views:

31

answers:

1

Hi All, I am trying to fix an issue. I have an ASP.NET Ajax's TabContainer on the page. And each tab there is a gridview control that gets binded onload. However for some reason the browser gets closed automatically after the page renders. If I remove the TabContainer then it works fine. I think the binding code will no way effect the browser to close bacause no where in my code I am registering any Script block.

Also one notable thing is this happens only in IE 8. It works fine in firefox and other browsers.

I don't know if anyone encountered a similar issue before.

Thanks...

Any help will be deeply appreciated.

A: 

Hi,

Although its late to respond I figured out the problem some time ago. The problem was that the page that launched the tabContainer page had an update panel and that was causing the issue and my problem was fixed after I removed the Update panel from the parent page.

Thanks for your suggestions guys.