将发布数据从php发送到网址而无需重定向

时间:2012-11-07 16:02:19

标签: php asp.net redirect post

我在网站www.aaa.com上有一个PHP页面,当我点击发送按钮时,它会将文本框数据作为发布数据发送到www.bbb.com的ASPX网页。

我需要相关的ASPX代码,用于将帖子数据检索到文本框并自动提交。

我该怎么做?

2 个答案:

答案 0 :(得分:3)

如果您能够依赖客户端解决方案,则可以使用jQuery $.ajax()来实现这一目标。引用jQuery API页面,$ .ajax()函数:

  

执行异步HTTP(Ajax)请求。

然后,您可以使用类似的代码将您的数据发送为POST,然后检索服务器提供的任何响应(已编辑为跨站点功能):

$.ajax({
    url: 'yourfolder/bbb.com?myparameter=myargument',
    dataType: 'jsonp',
    crossDomain: true,
    jsonp: false, //or else the first json element will be a ?
    data: $("#my-form-text-area").val(), //the data sent to the server
    success: function(receivedData) {
        alert("This is the data received from the server: " + receivedData.myJsonField);
  }

});

默认情况下,

$.ajax请求是异步的,这意味着处理将在您的服务器中进行,而success函数只会在收到响应时显示数据。

答案 1 :(得分:2)

如果这是您的网站 - 请尝试GET。 如果没有,你可以CURL