internet transfer control for asp.net

  • Thread starter Thread starter Web Search Store
  • Start date Start date
W

Web Search Store

Hello,

I wonder if there is a control that can be used in asp.net scripts
equivalent to what used to be the 'internet transfer control' in vb6.

I believe there is. Could anyone point me to information on it, or an
example would be better.

Thanks.

Scott
 
Have a look at the WebClient class which resides in the System.Net
namespace. If you need more complex functionality, then HttpWebRequest /
HttpWebResponse.
Peter
 
Hello Web,

There is no such control in .net. The most closest is WebBrowser control,
but it mostly for winforms

I'd recommend to do everything manually via (Http/Ftp)WebRequest/Response

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


WS> Hello,
WS>
WS> I wonder if there is a control that can be used in asp.net scripts
WS> equivalent to what used to be the 'internet transfer control' in
WS> vb6.
WS>
WS> I believe there is. Could anyone point me to information on it, or
WS> an example would be better.
WS>
WS> Thanks.
WS>
WS> Scott
WS>
 
Thanks a lot.. I'll look at it.

Scott
Peter Bromberg said:
Have a look at the WebClient class which resides in the System.Net
namespace. If you need more complex functionality, then HttpWebRequest /
HttpWebResponse.
Peter
 
Back
Top