Jump to content

Getting unique contents from result of webpage

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
mokszyk

mokszyk

    Learning Programmer

  • Members
  • PipPipPip
  • 33 posts
Hello. I would like to make function in my project. Function will add to my checkedlistbox all main results from webpage. For example, I go to:
http://www.filmweb.pl/search?q=17+again
And this site gives me results. I just wonder how can I get the main titles to checkedlistbox? What should I search for in google to get info about that operation? I really don't what tag should I write in google to read more about. Any help?
THink positive :)

#2
gokuajmes

gokuajmes

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 518 posts
Some kind of a web scrapper !! you want result LINK to be added to the checkedlistbox Is it ?
As far as i know,this could be made either using windows forms & ASP.NET web application. but i would recommend to use asp.net as this project deals with Request,Response,Posted file.
Please o through this Class documentation first
http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx
http://msdn.microsoft.com/en-us/library/system.web.httpresponse.aspx
with the http response class you can write the requested contents on to a file or Parse them into a checkboxlist as you wanted.

#3
mokszyk

mokszyk

    Learning Programmer

  • Members
  • PipPipPip
  • 33 posts
Thanks :) btw. Can you show me any example of gathering the content?

Edited by mokszyk, 24 June 2010 - 05:13 AM.

THink positive :)

#4
opol

opol

    Newbie

  • Members
  • Pip
  • 1 posts
I am also looking solution for this problem.