0
在web應用程序中,有一個要上傳文件的輸入標籤。在Windows Phone中,它看起來不同。我需要hlep編寫HttpWebRequest代碼來將文件上傳到遠程服務器(如果可能的話進行skydrive)。你能告訴我如何解決這個問題。如何通過Windows Phone將文件上傳到遠程服務器
1)從Windows手機上傳文件。 2)如何在服務器端處理上傳的文件如果我使用Asp.net。
謝謝。
在web應用程序中,有一個要上傳文件的輸入標籤。在Windows Phone中,它看起來不同。我需要hlep編寫HttpWebRequest代碼來將文件上傳到遠程服務器(如果可能的話進行skydrive)。你能告訴我如何解決這個問題。如何通過Windows Phone將文件上傳到遠程服務器
1)從Windows手機上傳文件。 2)如何在服務器端處理上傳的文件如果我使用Asp.net。
謝謝。
就是這樣。我建議你問一下如何在服務器端使用不同的標籤集處理它自己的問題。
var uri = "http://example.com/some_applette"
var request = HttpWebRequest.create(uri);
request.Method = "POST";
request.ContentType = "image/jpeg"; // Change to whatever you're uploading.
request.BeginGetRequestStream((result1) =>
{
using (Stream stream = request.EndGetRequestStream(result1))
{
// Bytes contains the data to upload.
stream.Write(bytes, 0, bytes.Length);
}
request.BeginGetResponse((result2) =>
{
var response = request.EndGetResponse(result2);
// Optionally handle the response.
var responseStream = response.GetResponseStream();
...
}
}, null);
這是gr8。讓我工作並稍後再報告,因爲我需要在服務器端工作。人們正在談論上傳到SkyDrive。我可以使用Wp7 App來做到這一點嗎? – MilkBottle 2011-06-03 00:13:47