Any ideas on how to use those? I could not find anything seful on the web,
and I tried the help file without much success also. I tried the following
example provided:
Dim myrequest As WebRequest = WebRequest.Create("http://www.icinema.com")
Dim myresponse As WebResponse = myrequest.GetResponse
And I also tried this:
Dim myReq As HttpWebRequest =
CType(WebRequest.Create("http://www.icinema.com/"), HttpWebRequest)
They give me a response, but where is the content of the web page?
Thanx,
--
Anil Gupte
www.keeninc.net www.icinema.com
"Chris Dunaway" <du******@gmail.comwrote in message
news:11**********************@p10g2000cwp.googlegr oups.com...
On Mar 1, 12:37 am, "Anil Gupte" <anil-l...@icinema.comwrote:
>A friend of mine is having this problem on his machine - it works fine on
my
machine. The above message appears when he tries to inset the "Microsoft
Internet Transfer Control" (Inet) into a Windows form. It was enabled in
the "Add item to Toolbox..." in Visual Studio.Net 2003 (tried both VB and
C#).
We tried Regsvr32 msinet.ocx on his machine. Still does not work,
although
it registers it. I don't remember if I did that on my machine or not.
Any ideas on how to fix this? Also, on the target machines, will we have
to
register the OCX as well? Can that be done in the installation process?
Thanx,
--
Anil Guptewww.keeninc.netwww.icinema.com
To my knowledge that component came with Visual Basic 5 or 6,
Professional edition. Does your friend have a valid license for VB 5
or 6 professional? Perhaps that is why he is not allowed to use that
control. I could be wrong however.
As an alternative, you can use the HttpWebRequest and FtpWebRequest
classes found in the System.Net namespace.
Chris