| Author: Appukuttan 18 Aug 2008 | Member Level: Diamond | Rating: Points: 1 |
Refer this..
http://msdn.microsoft.com/en-us/library/ms178619(VS.80).aspx
|
| Author: G.Joychandrasekaran 23 Aug 2008 | Member Level: Silver | Rating: Points: 6 |
To check the the Webpage Accessable using .Net Program ------------------------------------------------------ Using HTTPWebReuest and HttpWebResponse class is used to check the particular web page is working or not. Ex.
HttpWebRequest req = WebRequest.CreateRequest("Link"); HttpWebResponse res = req.GetResponse(); res.StatusCode=="OK"
To browse web pages in PocketPC: -------------------------------- Using IExplore->type link in file path text box-> click Ok button to browse the given page in internet explorer
To Browse web pages in .Net Program itself ------------------------------------------ TO user Web Browser control in Devie application windows form
Give link to the web browser control using "WebBrowseObj.Navigate()" Method.
All The Best G.Joychandrasekaran
|