[ic] problem with site launch

Darren interchange-users@icdevgroup.org
Wed Aug 21 13:00:05 2002


On Tue, 2002-08-20 at 11:12, ashah wrote:
> Hi All!
> My problem is:
> Our present URL www.vmss.com is linked to the old site.We have 
> finished our new interchange site 
> http://www.vmss.com/~asavalan/cgi-bin/cart.cgi but we don't know how 
> to do, when the user picks up www.vmss.com it would pop directly into 
> interchange index.html page. Thank you.
> 

Hi,

I use a little HTML index.html to open the cart in an frame that takes
the entire browser window.  This has the added effect of keeping
www.vmss.com as the address in your browser no matter what the user
click on.  Check the out..

Darren
---------------------
<html>
<head>
<title>Virtual Monitoring Security Systems</title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="KEYWORDS">
<meta name="robots" content="index,follow">
<meta name="description" content="Virtual Monitoring Security Systems">
<meta name="generator" content="www.vmss.com Forwarding">
</head>
<frameset framespacing="0" rows="100%,*" cols="100%" frameborder="no"
border="0">
  <frame name="VMSS2211Y" scrolling="auto"
src="http://www.vmss.com/~asavalan/cgi-bin/cart.cgi" noresize>
  <frame name="VMSS1122X" scrolling="no" noresize>
  <noframes>
    <h1><a href="http://www.vmss.com/~asavalan/cgi-bin/cart.cgi">Virtual
Monitoring Security Systems</a></h1>
    <p>Please <a
href="http://www.vmss.com/~asavalan/cgi-bin/cart.cgi">click here</a> to
view the non-framed version.</p>
    <hr>
    <p>Virtual Monitoring Security Systems</p>
  </noframes>
</frameset>
</html>
------------------------