Jeff Sanders Technical Blog

I am a Microsoft employee that has worked on all aspects of the Web Stack for a long time. I hope these blogs are useful to you! Use this information at your own risk.


<< Go Back

How Do I Figure Out What The Hex Error Codes From Winjs Xhr Are

- 08 Aug 2012

These codes are hex representations of the underlying WinINet error codes.  You can use calc to translate the code from hex to decimal and then look up that error here:

http://support.microsoft.com/kb/193625

To use calc bring up the calculator by hitting the Windows key and typing calc.  Then Alt+3 (or use the view menu) to change to programmer mode.  Ensure the ‘Hex’ radio button is selected and input the hex code.  Then choose the ‘Dec’ radio button to get the decimal version.

-Jeff

 

<< Go Back