i have a php page.Now i need to post data from this php page to my another aspx page?
can i post data from a php page to aspx page?
<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. 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.