0
好的。我知道我可以使用DDE來獲取網頁的URL,甚至可以在外部瀏覽器(如Firefox)中打開特定頁面。我想知道需要什麼來獲得顯示網頁的來源。如果有人能夠幫助,我將不勝感激。我正在使用vb.net,但我可以輕鬆獲取任何C#示例。我用Google搜索,似乎無法找到很多。使用DDE獲取網頁的來源
好的。我知道我可以使用DDE來獲取網頁的URL,甚至可以在外部瀏覽器(如Firefox)中打開特定頁面。我想知道需要什麼來獲得顯示網頁的來源。如果有人能夠幫助,我將不勝感激。我正在使用vb.net,但我可以輕鬆獲取任何C#示例。我用Google搜索,似乎無法找到很多。使用DDE獲取網頁的來源
粗糙和準備,但是:
using System;
namespace So2
{
class Program
{
public static void Main(string[] args)
{
System.Net.WebRequest req = System.Net.WebRequest.Create("http://www.google.com");
System.Net.WebResponse response = req.GetResponse();
string source = new System.IO.StreamReader(response.GetResponseStream()).ReadToEnd();
Console.WriteLine(source);
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
}
我欣賞response.I知道你可以使用一個Web請求得到一個網頁的源代碼,但我知道,網頁的特定情況下,可以有稍微不同信息。所以我想在firefox中閱讀已經打開的網頁的源代碼。 – user1195376