本文介绍了通过WP7从Web服务向服务器发送录制的音频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想发送保存在Web服务器上的隔离存储中的音频文件。我将尝试使用网络请求发送数据。



link 127.0.0.1/info2013



Html代码:

I want to send a audio file saved in isolated storage put on web server. I will try to do that with send data using web request.

link 127.0.0.1/info2013

Html code:

<form name="upload" method="post" action="upload.php" enctype="multipart/form-data">
      <input type="file" name="Image"><br>
	  <input type="submit" value="Upload">
	</form>
Php code
 copy ($_FILES['Image']['tmp_name'], $_FILES['Image']['name']) or die ('Could not upload');
?>



好​​的我认为这样可行。但我不知道如何在c#,windows phone 7 sdk中发出网页请求。你能帮帮我吗?非常感谢。


Ok I think that will work. But I didn''t know how to make a web request in c#, windows phone 7 sdk. So can you help me. Thanks a lot.

推荐答案




好​​的我认为这样可行。但我不知道如何在c#,windows phone 7 sdk中发出网页请求。你能帮帮我吗?非常感谢。


Ok I think that will work. But I didn''t know how to make a web request in c#, windows phone 7 sdk. So can you help me. Thanks a lot.



这篇关于通过WP7从Web服务向服务器发送录制的音频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 01:44
查看更多