retrieving data from website

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default retrieving data from website

    hi there all, me again...
    is it possible if you know the layout of a web site, to retrieve data from
    it? i mean things like a weather site that gives temperatures being consumed
    by a web service that takes the temperatures and passes them back to me.

    any help would be fab,
    max


    max Guest

  2. Similar Questions and Discussions

    1. Retrieving information from website
      Hi I have a very basic question regd retrieving information from website using a scripting language: Basically I am working on the development...
    2. cfc not retrieving data in flex
      I am a learner in Flex. I was learing the Restaurant application provided on the macromedia site. Instead of using jsp files as remoteobject and...
    3. Retrieving Updated Data
      Hi, I have a Windows application that consumes a web service. The data returned from this service contains product prices, ratings and other...
    4. PHP problem retrieving data
      I'm not sure why this isn't working, but it's giving me no output. I have a form which requests email and city to pull up a listing, then Email that...
    5. Forms and retrieving data
      Hello, I'm a new user to DWMX and am quite the novice. My question is: How do you retrieve data / information from a form? I created a survey about...
  3. #2

    Default RE: retrieving data from website

    Of course, you can make a web request and read the response back. Then, search for the pattern that you want to obtain the result. The problem is when the page is moved or the layout/pattern is changed

    Tu-Thac
    [url]www.ongtech.co[/url]

    ----- max wrote: ----

    hi there all, me again..
    is it possible if you know the layout of a web site, to retrieve data fro
    it? i mean things like a weather site that gives temperatures being consume
    by a web service that takes the temperatures and passes them back to me

    any help would be fab
    ma



    Tu-Thach Guest

  4. #3

    Default Re: retrieving data from website

    max,

    something like that
    ' Establish the request
    Dim loHttp As HttpWebRequest = CType(WebRequest.Create([url]http://blabla[/url]),
    HttpWebRequest)
    Dim loWebResponse As HttpWebResponse
    Dim loResponseStream As System.IO.StreamReade
    Dim webSite As String

    loWebResponse = CType(loHttp.GetResponse(), HttpWebResponse)
    loResponseStream = New
    System.IO.StreamReader(loWebResponse.GetResponseSt ream())

    ' Get the page
    webSite = loResponseStream.ReadToEnd



    Alexey



    "max" <mcgants@hotmail.com> wrote in message
    news:eLy$%23l7%23DHA.2040@TK2MSFTNGP12.phx.gbl...
    > hi there all, me again...
    > is it possible if you know the layout of a web site, to retrieve data from
    > it? i mean things like a weather site that gives temperatures being
    consumed
    > by a web service that takes the temperatures and passes them back to me.
    >
    > any help would be fab,
    > max
    >
    >

    Alexey Smirnov Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139