Request for another page from aspx site

Posted by sanjuro on Stack Overflow See other posts from Stack Overflow or by sanjuro
Published on 2010-04-20T07:00:05Z Indexed on 2010/04/20 7:03 UTC
Read the original article Hit count: 179

Filed under:
|
|

Hi, it is possible to do a request for another page on internet from page_load? I mean if it is possible to aquire markup code with informations from another page and display them on my aspx site? For example something like this:

protected void Page_Load(object sender, EventArgs e)
{
  UnknownType anotherSite = GetMarkupCode("www.fifa.com");
  //parse anotherSite
             .
             .
             .
  //display parsed informations
             .
             .
             .
}

If it is possible how can i do that? Many thanks for answers.

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET