I need to make a single GET request using httpWebRequest class.
I was wondering do i need to get response necessary or making only request is enough?
or i have to get the response anyway?Code:Dim req As HttpWebRequest = CType(WebRequest.Create("http://www.service.com/receiver.aspx?param=value¶m2=value"), HttpWebRequest)
Btw, what is the default value of the HttpWebRequest Method? Is it Get or just nothing?
EDIT: Response is necessary ! Thanks





Reply With Quote