J john Aug 28, 2003 #3 really? which method do i use? i've only been able to pass a url into the HttpWebRequest. I need to literally call Put, Post and Get verbs.
really? which method do i use? i've only been able to pass a url into the HttpWebRequest. I need to literally call Put, Post and Get verbs.
D Drebin Aug 28, 2003 #4 HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(strURL); objRequest.Method = "GET"; HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();
HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(strURL); objRequest.Method = "GET"; HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();