Popular Posts

Saturday, January 21, 2012

Load file in the Div

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);

No comments:

Post a Comment