我有一個站點顯示需要在另一個站點上顯示的html內容(第一個站點是內容管理系統的前端)。你如何從URL中獲取html?
所以站點1頁= http://site1/pagecontent
和現場2(http://site2/pagecontent)我需要能夠顯示站點1頁上顯示的內容。
我正在使用.Net C#(MVC),並不想只使用iframe。
有沒有辦法將html吸入字符串變量?
我有一個站點顯示需要在另一個站點上顯示的html內容(第一個站點是內容管理系統的前端)。你如何從URL中獲取html?
所以站點1頁= http://site1/pagecontent
和現場2(http://site2/pagecontent)我需要能夠顯示站點1頁上顯示的內容。
我正在使用.Net C#(MVC),並不想只使用iframe。
有沒有辦法將html吸入字符串變量?
是的,你可以使用WebClient類:http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx
WebClient wClient = new WebClient();
string s = wClient.DownloadString(site2);
當然。請參閱System.Net.WebClient
類,特別是DownloadString()
方法。