简体   繁体   English

如何将数据从PHP发布到ASPX页面?

[英]How to post data from php to aspx page?

i have a php page.Now i need to post data from this php page to my another aspx page? 我有一个php页面。现在我需要将数据从该php页面发布到另一个aspx页面? can i post data from a php page to aspx page? 我可以将数据从php页面发布到aspx页面吗?

   <form method="post" action="http://localhost/.../friend.aspx?title=abc" enctype="multipart/form-data">                       
    <td ><input type="submit"  name="search"  value="SEND"/></td>
   </form>

is it possible? 可能吗?

thx 谢谢

It will work, without a doubt. 毫无疑问,它将起作用。

Questions like this come along all day long, an aspx server handles data exactly the same as every other server. 像这样的问题整日到来,aspx服务器处理数据的方式与其他服务器完全相同。 the way the data is used on the server side is the only difference. 唯一的区别是在服务器端使用数据的方式。

You can post forms to any where on the internet, and also to any type of web server. 您可以将表单发布到Internet上的任何地方,也可以发布到任何类型的Web服务器。

是的,您编写的示例应该可以工作。

This is perfectly possible. 这是完全可能的。 You only need to be careful what you're posting and what aspx page expects. 您只需要注意发布的内容和预期的aspx页面。 Try not to mess with all those view state clutter. 尽量不要弄乱所有视图状态的混乱情况。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM