我在网站www.aaa.com
上有一个PHP页面,当我点击发送按钮时,它会将文本框数据作为发布数据发送到www.bbb.com
的ASPX网页。
我需要相关的ASPX代码,用于将帖子数据检索到文本框并自动提交。
我该怎么做?
答案 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