現在、コードを介して結果を保存していますか?まあ、実際の ASP 投稿を行う前に、フォームの値を読み取って (jquery などを使用して) 投稿する JavaScript をページに配置することでハッキングできます。
編集(このようなものが役立つ場合があります(場合によっては):
//change the action of the form (you could just change in code or this
$('#myform').attr('action','http://newpaymentproc.com/me/');
//override the default submit
$('#myformsubmitbutton').click(function(){
//extract the form data somehow (depends on form)
var formObj;
$.each($('#myform').find('input').serializeArray(), function(i, field) {
formObj[field.name] = field.value;
});
//post to old place
$.post('/old_current.asp', formObj).then(
//after posting to old place and getting response...
//submit form to new payment processor
$('#myform').submit()
);
// Cancel the actual form submit click to give time for post
return false;
});
もう 1 つの方法は、(送信後に) レガシー コードにデータを含むフォームを吐き出させ、JavaScript を使用してページの読み込み時に送信をトリガーすることです。