|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
VB.NET counterpart to the java URL ClassHello,
I'm interesting in finding out the VB.NET alternative to the URL Class. For example, in Java you can have the following: ------------------------------------------------------------------------------------------------------------------------------------ URL url = new URL("http://finance.yahoo.com/q?s=AOL"); InputStream abc = url.openStream(); BufferedInputStream bufIn = new BufferedInputStream(abc); ------------------------------------------------------------------------------------------------------------------------------------ How would you do this in VB.NET ? Thanks Hi,
See System.Net.WebClient (or related classes if you need lower level) -- Show quoteHide quotePatrice <samadams_2***@yahoo.ca> a écrit dans le message de news: 1153210311.638085.158***@i42g2000cwa.googlegroups.com... > Hello, > > I'm interesting in finding out the VB.NET alternative to the URL Class. > For example, in Java you can have the following: > > ------------------------------------------------------------------------------------------------------------------------------------ > > URL url = new URL("http://finance.yahoo.com/q?s=AOL"); > > InputStream abc = url.openStream(); > > BufferedInputStream bufIn = new BufferedInputStream(abc); > > ------------------------------------------------------------------------------------------------------------------------------------ > > How would you do this in VB.NET ? > > Thanks > <samadams_2***@yahoo.ca> schrieb:
> I'm interesting in finding out the VB.NET alternative to the URL Class. 'WebClient', 'WebRequest'.> For example, in Java you can have the following: -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/> |
|||||||||||||||||||||||