I am using IE9 and I'm trying to load two web pages on startup.
Originally it was loading one but now I need to see 2 different pages, preferably tabs but not necessary, whatever is easier.
Here is the original code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<META HTTP-EQUIV="refresh" content="10;URL=http://www.gmail.com">
<title>Loading application...</title>
</head>
<body>
<h1>
PLEASE WAIT...!!!
</h1>
</body>
</html>
and I tried creating a batch file to open 2 different iexplore.exe with 2 different websites but it didn't work. It would only open the 2nd iexplore after the first one was closed.
@echo off
SET BROWSER=iexplore.exe
START %BROWSER% "http://www.cnn.com"
SLEEP 10
START %BROWSER% "http://www.gmail.com"
NOTE: I need a 10 second delay to open gmail.com (or one of the sites). That's where I'm getting stuck, otherwise I would just set the home pages to these two and add a shortcut to iexplore.exe to the startup folder.
Any help is greatly appreciated!