﻿var url = "/AOV3/IslemlerAjax.aspx";


function GetHTTPRequest() {

    if (window.XMLHttpRequest) {
        // code for IE7+, Firefox, Chrome, Opera, Safari
        return new XMLHttpRequest();
    }
    if (window.ActiveXObject) {
        // code for IE6, IE5
        return new ActiveXObject("Microsoft.XMLHTTP");
    }
}

function UpdateNePisiriyorsun(pisir) {
    var contentType = "application/x-www-form-urlencoded; charset=UTF-8";
    xmlhttp = GetHTTPRequest();
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == 4) {
            alert("Pişirdiğiniz yemek güncellendi");
        }
       
    };
    xmlhttp.open("POST", url, true);
    xmlhttp.setRequestHeader("Content-Type", contentType);

    var q = "op=updPisir"
    q += "&value=" + encodeURIComponent(pisir);
    xmlhttp.send(q);


}
