On a mobile browser, a user would zoom in and click a button. After the postback, the page would return to the same position and zoom as before. However, when the site was upgraded to .Net 4.0, the page loses the position and zoom on a postback. If this functionality is lost in .Net 4.0, is there a way that I can duplicate this functionality?
<asp:UpdatePanel runat="server" id="upPockets" updatemode="Conditional" >
<ContentTemplate>
<asp:Panel ID="panPockets" runat="server" Width="100%" >
<asp:PlaceHolder ID="plPockets" runat="server" ></asp:PlaceHolder>
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>