Sign in | Join
Last post 06-19-2008 4:39 AM by Thomas Sun – MSFT. 1 replies.
Sort Posts: Oldest to newest Newest to oldest
Hi, I am looking for ways to develop and application that interacts with webpages. Like logging in and registeration ? Are that guides available kindly point me in the right direction thanks.
Hi,
Based on my understanding, you want to request website from your windows form application. If I have misunderstood you, please feel free to let me know.
You can try to use HttpWebRequest (http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx) to send the request to website and use HttpWebResponse (http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.aspx) to get the response.
For example, see http://www.worldofasp.net/tut/WebRequest/Working_with_HttpWebRequest_and_HttpWebResponse_in_ASPNET_114.aspx
I hope this helps.