I wanted to make an HTTP call to a website. I just need to hit the URL and dont want to upload or download any data. What is the easiest and fastest way to do it.
I
You've got some extra stuff in there if you're really just trying to call a website. All you should need is:
WebRequest webRequest = WebRequest.Create("http://ussbazesspre004:9002/DREADD?" + fileName);
WebResponse webResp = webRequest.GetResponse();
If you don't want to wait for a response, you may look at BeginGetResponse to make it asynchronous .