jquery ajax post
$.ajax({type:"post",
url:"PhotoTransferNew.ashx",
data:{
username:"000",
job:"111"
},
error:function(msg){
alert("error") ;
},
success:function (msg){
alert("success");
}
});