Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
Ajax

Ajax: Understand XMLHttpRequest for HTTP Requests

- 05.07.26 - ErcanOPAK

📡 XMLHttpRequest = Legacy AJAX

Before Fetch API, there was XMLHttpRequest. Still works, still used. Understand the foundation.

❌ XMLHttpRequest

const xhr = new XMLHttpRequest();
xhr.open('GET', '/api/data');
xhr.onload = function() {
    if (xhr.status === 200) {
        const data = JSON.parse(xhr.responseText);
        console.log(data);
    }
};
xhr.send();

✅ Fetch API (Modern)

fetch('/api/data')
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error(error));

🎯 XMLHttpRequest Examples

// GET request
const xhr = new XMLHttpRequest();
xhr.open('GET', '/api/users');
xhr.onload = function() {
    if (xhr.status === 200) {
        const users = JSON.parse(xhr.responseText);
        console.log(users);
    }
};
xhr.send();

// POST request
const xhr = new XMLHttpRequest();
xhr.open('POST', '/api/users');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onload = function() {
    if (xhr.status === 201) {
        const newUser = JSON.parse(xhr.responseText);
        console.log('Created:', newUser);
    }
};
xhr.send(JSON.stringify({ name: 'Alice', email: 'alice@example.com' }));

// Error handling
const xhr = new XMLHttpRequest();
xhr.open('GET', '/api/users');
xhr.onload = function() {
    if (xhr.status === 200) {
        console.log('Success:', xhr.responseText);
    } else {
        console.error('Error:', xhr.status);
    }
};
xhr.onerror = function() {
    console.error('Network error');
};
xhr.send();

// Progress tracking
const xhr = new XMLHttpRequest();
xhr.open('GET', '/api/large-file');
xhr.onprogress = function(event) {
    if (event.lengthComputable) {
        const percent = (event.loaded / event.total) * 100;
        console.log(`Progress: ${percent}%`);
    }
};
xhr.send();

💡 When to Use XHR

  • Legacy browser support
  • Progress tracking (upload/download)
  • File uploads
  • Binary data handling
  • Abort requests

“XMLHttpRequest is the foundation. Fetch is modern, but XHR is still useful. Essential to understand.”

— Senior Developer

Related posts:

AJAX Requests Canceled on Page Navigation

Handle AJAX Errors Properly: Retry Logic with Exponential Backoff

AJAX: Use Retry Logic with Exponential Backoff for Failed Requests

Post Views: 0

Post navigation

JavaScript: Use Local Storage for Client-Side Data
Git: Use Git Stash to Save Work Temporarily

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (597)
  • Add Constraint to SQL Table to ensure email contains @ (582)
  • Average of all values in a column that are not zero in SQL (545)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (512)
  • Find numbers with more than two decimal places in SQL (460)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes
  • Ajax: Use Axios for HTTP Requests
  • JavaScript: Understand Hoisting
  • HTML: Use Web Storage for Client-Side Data
  • CSS: Use Filter Effects for Visual Magic
  • Windows 11: Unlock God Mode for All Settings

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com