N
Neven Klofutar
Hi,
Is there a way I can read content of http page ?
This won't work:
****************************
string strStranica = @"http://www.hnb.hr/tecajn/hvazeca.htm";
StreamReader sr = new StreamReader(strStranica, Encoding.ASCII);
while ( (strLinija = sr.ReadLine()) != null ) {
....
I get an error:
Exception Details: System.ArgumentException: URI formats are not supported.
Please help, Neven
Is there a way I can read content of http page ?
This won't work:
****************************
string strStranica = @"http://www.hnb.hr/tecajn/hvazeca.htm";
StreamReader sr = new StreamReader(strStranica, Encoding.ASCII);
while ( (strLinija = sr.ReadLine()) != null ) {
....
I get an error:
Exception Details: System.ArgumentException: URI formats are not supported.
Please help, Neven