Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_java thread: Re: pro_java digest: November 25, 2001


Message #1 by "heena sampat" <heena_sampat@i...> on Mon, 26 Nov 2001 15:24:05 +0530
try writing the following javascritp as index.htm



<meta name="description"
content="Need a title page to your web site that waits until all the
graphics load, then it transfers to the next page? Here's the script.">
<script language="JavaScript">
<!--

pause_time = 10;

transfer_location = "http://      ";

function transfer() {
 if (document.images)
  setTimeout('location.replace("'+transfer_location+'");',pause_time);
 else
  setTimeout('location.href = transfer_location;',pause_time);
}
// -->
</script>
</head>

<body bgcolor="white" onLoad="transfer()">
<b>

<p align="center"><br>
</b> </p>
</body>
</html>



----- Original Message -----
From: "Professional Java digest" <pro_java@p...>
To: "pro_java digest recipients" <pro_java@p...>
Sent: Monday, November 26, 2001 5:31 AM
Subject: pro_java digest: November 25, 2001


> -----------------------------------------------
> When replying to the digest, please quote only
> relevant material, and edit the subject line to
> reflect the message you are replying to.
> -----------------------------------------------
>
> The URL for this list is:
> http://p2p.wrox.com/list.asp?list=pro_java
>
> PRO_JAVA Digest for Sunday, November 25, 2001.
>
> 1. changing tomcats 4.0 default page, index.html to another
>
> ----------------------------------------------------------------------
>
> Subject: changing tomcats 4.0 default page, index.html to another
> From: "Rudi Doku" <rudidoku@h...>
> Date: Sun, 25 Nov 2001 02:50:49
> X-Message-Number: 1
>
> Hello,
>
> could anyone suggest a useful website where i can learn how to deploy
> servlets? that will help me so i stop asking questions that are probably
> very simple.
>
> My problem is as follows - currently, I need to enter the following url to
> get to my login page :
>
> http://localhost:8080/artist/JSP/login.jsp
>
>
> Is there anyway i can configure tomcat to load this page on startup? i
> suspect it's got something to do with the context path variable in the
> server.xml file but i'm still yet to figure it out.
>
> Thanks in advance.
>
> Cheers,
>
> Rudi
>
>
> ---
>
> END OF DIGEST
>
> ---
> SIGS Conference for Java Development
> Targeted, focused classes, expertise level classes
> taught by Java gurus, rigorous tutorials, and
> exhibit floor makes SIGS Conference for Java
> Development a learning experience unlike any
> other. Join over 10,000 developers and programmers
> from across the U.S. and around the world who
> have benefited from attending SIGS/101 Conferences.
> http://www.javadevcon.com



  Return to Index