below code is for load file in a Div.
WebClient MyWebClient = new WebClient();
Byte[] PageHTMLBytes;
PageHTMLBytes = MyWebClient.DownloadData("http://abc.html");
UTF8Encoding oUTF8 = new UTF8Encoding();
divName.InnerHtml = oUTF8.GetString(PageHTMLBytes);
WebClient MyWebClient = new WebClient();
Byte[] PageHTMLBytes;
PageHTMLBytes = MyWebClient.DownloadData("http://abc.html");
UTF8Encoding oUTF8 = new UTF8Encoding();
divName.InnerHtml = oUTF8.GetString(PageHTMLBytes);
No comments:
Post a Comment