我需要申請一系列頁面,想,如果你是用Ajax做從服務器代碼做,我可以做?謝謝請求與服務器代碼的頁面
0
A
回答
2
您正在尋找的WebClient
類。
+0
+1。只是爲了幫助:`var pageContents = new WebClient()。DownloadString(「http://example.com」);` – orip 2011-01-26 21:01:05
0
使用此c#函數。使用System.Net添加;頁面頂部。
private string MakeWebRequest(string url) {
string retValue = String.Empty;
try
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = null;
request.Method = "GET";
response = (HttpWebResponse)request.GetResponse();
StreamReader stReader = new StreamReader(response.GetResponseStream());
retValue = stReader.ReadToEnd();
stReader.Close();
response.Close();
stReader.Dispose();
stReader = null;
response = null;
request = null;
}
catch (Exception ex) {
}
return retValue;
}
相關問題
- 1. 使用java代碼在Glassfish服務器上請求網頁
- 2. 服務器請求uri頁面和相關頁面
- 3. 分頁上的DataTable服務器請求
- 4. PHP異步頁面請求代碼
- 5. Autocompleter與來自服務器的請求
- 6. PHP將頁面請求限制到特定的服務器?
- 7. 通過頁面請求暫停Django的開發服務器?
- 8. 服務器在SIM908的多個GET請求後禁用頁面
- 9. 請求從http頁面到https服務器的json資源
- 10. 從html頁面到服務器的Ajax請求不起作用
- 11. 從服務器端的ASP.NET網站請求頁面
- 12. 虛假請求服務器上的郵件頁面
- 13. 服務器對未知頁面的請求
- 14. Ajax請求的代碼放在不同的服務器
- 15. HTTP服務器能夠代理請求
- 16. GM_xmlhttp請求通過代理服務器
- 17. Android:代理(中繼)服務器請求
- 18. 代理服務器在python中重定向被阻止的頁面請求
- 19. Indy HTTP服務器URL編碼請求
- 20. 碼頭服務器日誌請求體
- 21. 頁面緩存 - 發起服務器中的第一個頁面請求
- 22. REST請求服務器與jQuery
- 23. txjsonrpc服務器與請求客戶端
- 24. 請求與服務器響應DUPLICATE_REQUEST_ID
- 25. 修改請求與查爾斯代理服務器的負載
- 26. 頁面請求與jquery
- 27. Systemd服務請求密碼
- 28. 通過服務器發送頁面請求?
- 29. 代碼= -1011「請求失敗:內部服務器錯誤(500)
- 30. 412服務器響應代碼$ .ajax請求
http://meta.stackexchange.com/questions/18584/how-to-ask-a-smart-question and http://msmvps.com/blogs/jon_skeet/archive/2010/08/ 29/writing-the-perfect-question.aspx – Will 2011-01-26 20:47:05