opening web-pages

Hi. I wanna write a program, that enters a web-site (for example www.yahoo.com). Can u help me and write the code?
Are we talking about just downloading the .html or are we going straight into HTML rendering?

Can u help me and write the code?
LOL no.
And why have you started another thread with the same question? And, again, what do you mean by "entering"? It could mean logging on to a website (maybe yahoo has email, for instance), or as helios suggests maybe you want to download the html, or render it, or ... what?
it took me 5 mins to find this on google---

1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <stdio.h>
#include <windows.h>
using namespace std;
int main()
{
    system("start c:\\progra~1\\intern~1\\iexplore.exe http://www.yahoo.com");
    
    return 0;
}


enjoy...
Topic archived. No new replies allowed.