C# code

Do you want to open it and show it to the user? Or just open it and suck down the content into a string? Or a file, or something else?
 
Yeah, very open ended question :)

Are you looking for something simple like how to redirect a user to another webpage (redirect).

Or do you want to write a C# application that goes to a webpage, reads it, (parses it perhaps) and displays the contents (i.e., a C# web browser)?
 
C# has a Browser object built in. You drag and drop it onto your Form, and viola. You can make an address bar, and have it redirect the browser to another location, etc. The sky is the limit. Just look for a Web Browser object of some sort (I forget the exact name). It is very easy to utilize assuming you want a small broswer.
 
Back
Top