var __src = null;
function scrap(args) {
if (args.user == 0) {
if (confirm('로그인한 회원만 스크랩이 가능합니다.\n\n로그인 페이지로 이동하시겠습니까?')) {
Navigation.goPage(0, 1);
}
return;
}
new Ajax.Request('ProgramExec.asp', {
method : "post",
asynchronous : false,
contentType : "application/x-www-form-urlencoded",
encoding : "utf-8",
parameters : {n : args.seq, date : args.date, m : 'setScrap'},
onSuccess : function (xmlHttp) {
try {
var msg = xmlHttp.responseText.evalJSON();
if (msg.result == "SUCCESS") {
window.alert("프로그램 스크랩이 완료되었습니다.\n\n해당 내역은 [내 공연]에서 확인하실 수 있습니다.");
} else if (msg.result == "FAIL") {
window.alert(decodeURIComponent(msg.message));
} else {
window.alert("유효하지 않은 결과코드입니다.");
}
} catch (e) {
window.alert(xmlHttp.responseText);
}
}.bind(this)
});
}
|