LinkButtons in IE10 not performing posting back LinkButtons in IE10 not performing posting back asp.net asp.net

LinkButtons in IE10 not performing posting back


This is a server patching/updating problem. ASP.NET has not emitted the correct JavaScript for your browser to run. It's not aware of IE versions newer than IE9.

See Scott Hanselman's post on this:

ASP.NET fails to detect IE10 causing _doPostBack is undefined JavaScript error or maintain FF5 scrollbar position

Scott notes in this 2011 post that the fix should be distributed via Windows Update. Ensure your server is up to date with .NET Framework service updates from Windows Update. If not, you can download the patch or read more details on the Microsoft KB.

The fix will update those .browser files allowing ASP.NET to emit the correct markup and JavaScript.

%WinDir%\Microsoft.NET\Framework(64?)\v4.0.30319\CONFIG\Browsers\ie.browser

This will contains items like this:

  <!-- Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) -->  <browser id="IE10Plus" parentID="IE6Plus">    <identification>      <capability name="majorversion" match="\d{2,}" />    </identification>    <capabilities>      <capability name="jscriptversion" value="6.0" />    </capabilities>  </browser>


You have patch who patch introduces the updated definitions in the browser definition files for Internet Explorer and Mozilla Firefox. The browser definition files are stored in the following folders, depending on the installed version of Microsoft Framework le.NET:

For 32-bit versions of the Framework 4.0.NET

% WinDir% \ Microsoft.NET \ Framework \ v4.0.30319 \ CONFIG \ Browsers

For 64-bit versions of the Framework 4.0.NET

% WinDir% \ Microsoft.NET \ Framework64 \ v4.0.30319 \ CONFIG \ Browsers

Download Patch here : http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=2600088&kbln=fr

Link : http://support.microsoft.com/kb/2600088