HTTP url

  • Thread starter Thread starter Ahron321
  • Start date Start date
A

Ahron321

Guest
Could i access to my usrname and pass to url in this code? if yes how

public static string HttpGet(string URI)
{
System.Net.WebRequest req = System.Net.WebRequest.Create(URI);
//req.Proxy = new System.Net.WebProxy(ProxyString, true); //true means no proxy
System.Net.WebResponse resp = req.GetResponse();
System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream());
string result= sr.ReadToEnd().Trim();
MessageBox.Show(result);
return result;
}

Continue reading...
 
Back
Top