Display HTML Content of a Website in Your Webpage
This is another new interesting technique by which u could display the content of any website in your webpage.I am displaying the html content inside a label. Have a look at the code snippet below..
Design Part:
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
Code Behind:
Include the namespace:
Using System.IO;
Using System.Net;
protected void Page_Load(object sender, EventArgs e) { Label1.Text = HttpContent("http://www.w3schools.com/"); } private string HttpContent(string url) { System.Net.WebRequest objRequest = System.Net.HttpWebRequest.Create(url); System.IO.StreamReader sr = new System.IO.StreamReader(objRequest.GetResponse().GetResponseStream()); string result = sr.ReadToEnd(); sr.Close(); return result; }
No comments:
Post a Comment
Thank You for Your Comments. We will get back to you soon.