|
HTTP-Logout
// Let's create an xmlhttp object
var xmlhttp = createXMLObject();\n
// Let's prepare invalid credentials
xmlhttp.open("GET", page, true, "logout", "logout");
// Let's send the request to the server
xmlhttp.send("");
// Let's abort the request
xmlhttp.abort();
|