I m trying to invoke a URL in C#, I am just interested in invoking, and dont care about response. When i have the following, does it mean that I m invoking the URL?
You can use this:
string address = "http://www.yoursite.com/page.aspx"; using (WebClient client = new WebClient()) { client.DownloadString(address); }