将数据从ASP网站发布到PHP网站

时间:2012-10-08 12:50:29

标签: php asp.net

我正在为手机号码开发一个选择加入/退出API,可以放在任何网站的顶部,这样人们就可以订阅接收手机号码的短信。

我有以下脚本,它基本上在我的PHP网站之间使用Curl发布数据,这个工作非常好:

<?php

$url = "http://myserverurl.com/optin.php";
$postdata['customer_id'] = "1";
$postdata['mobilenumber'] = $_POST['mobilenumber'];

$useragent= "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" ;

$ch = curl_init();
//set some cookie details up (depending on the site)
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt");
curl_setopt($ch, CURLOPT_USERAGENT, $useragent); //set our user agent
curl_setopt($ch, CURLOPT_POST, 1); //set how many paramaters
curl_setopt($ch, CURLOPT_URL,$url); //set the url we want to use
curl_setopt($ch, CURLOPT_POSTFIELDS,$postdata); //set data to post


$result= curl_exec ($ch); //execute and get the results
curl_close ($ch);
//print $result; //display the reuslt

?>

如果网站位于ASP.net,如何应用此方法? Curl中有ASP.net类似的内容吗?

谢谢,

2 个答案:

答案 0 :(得分:1)

看一下WebRequest,这将使你的大部分成为可能,但不是一行一行。

此外,您可以下载curl并从您的应用程序中调用它(当您可以选择WebRequest时,真的不推荐......呵呵)

答案 1 :(得分:1)

googling几秒后,您将获得this result。其中显示了使用System.Net.WebRequest的示例。

MSDN提供example如何使用它发送帖子数据。