PDA

View Full Version : سوال: معادل این کد PHP در ASP چیست؟



persepolise
جمعه 04 آذر 1390, 12:24 عصر
سلام دوستان
من یک کد PHP دارم که میخوام اون رو به ASP Classic تغییر بدم. ممنون میشم اگر کمک کنید.


function verification($x_fp_timestamp,$x_fp_sequence,$x_fp_ hash,$x_login,$x_description,$x_amount,$x_currency _code)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://Damoon.bsi.ir/DamoonVerificationController");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt ($ch, CURLOPT_POST, 1);
$post="x_fp_timestamp=$x_fp_timestamp&x_fp_sequence=$x_fp_sequence&x_fp_hash=$x_fp_hash&x_login=$x_login&x_description=$x_description&x_amount=$x_amount&x_currency_code=$x_currency_code";

curl_setopt ($ch, CURLOPT_POSTFIELDS, $post);
$estore = curl_exec ($ch);
curl_close ($ch);
return $estore;
}