Ask a Question related to ASP.NET Web Services, Design and Development.
-
max #1
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
-
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... -
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... -
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... -
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... -
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... -
Tu-Thach #2
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
-
Alexey Smirnov #3
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...consumed> 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> by a web service that takes the temperatures and passes them back to me.
>
> any help would be fab,
> max
>
>
Alexey Smirnov Guest



Reply With Quote

