Working AJAX in visual basic February 19, 2009

Currently posted in my new site http://akosipau.com

Ajax or Asynchronous JavaScript and XML is a web development technique that used XMLHttpRequest object to provide us a way to communicate with a server after a web page has loaded.

What Ajax or XMLHttpRequest object can do?

  • Update a web page with new data without reloading the page
  • Request data from a server after the page has loaded
  • Receive data from a server after the page has loaded
  • Send data to a server in the background

Working of AJAX with VB

Here’s how to used XMLHttpRequest object in visual basic to get data directly from web server.

full article

  • 2.5

    Related posts

    Posted in visual basic | Tags: