$.ajax({
cache: false,
url: '/siparisNoSorgula?srgNO=' + dn + '',
type: 'POST',
success: function (result) {
//window.location = '/ShoppingBasket';
if (result == "-1") {
alert('Sipariş No Sayı Olmalıdır');
}
else if (result == "0") {
alert('Sipaiş No Bulunamadı');
}
else {
window.location = result;
}
}
});
C#,MVC,MSSQL,Windows Forms