I have a button on an ASP.net page.
<asp:Button Text="<%$Resources: WebResources, Export %>" ID="BtnExport" runat="server" OnClick="BtnExport_Click"/>
The issue is that when I try to export more than 130 items the page will not postback and go straight to the dns error page. The code works fine in firefox, safari, and chrome. The issue occurs in IE (only tested in 8).
I tried debugging. I added a breakpoint at the start of the method and start of the PageLoad method and the error happened before it got to those points.
Any ideas?