those,lines,beginning,your,page,there,picture
Quick Search for:  in language:    
those,lines,beginning,your,page,there,picture
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
ASP/ VbScript Stats

 Code: 132,008 lines
 Jobs: 198 postings

 
Sponsored by:

 

You are in:

 
Login


 

 


Latest Code Ticker for ASP/ VbScript.
if i remember, this is a M. Harris code sample
By ask on 8/24


MTS Registration Script
By Igor Krupitsky on 8/23


Click here to see a screenshot of this code!Creating Windows Users with ASP and ADSI
By jamespwalters on 8/23

(Screen Shot)

News Poster (Advanced)
By Martin Kilbryde on 8/22


Print a web document through MS Word
By ask on 8/22


Click here to see a screenshot of this code!ADSI Domain Group Explorer
By Gordon Asbach on 8/22

(Screen Shot)

_-~Who is looking at your site? v2.0!~-_
By John on 8/22


Using HTML Option to Display Current Month
By Patrick Ingle on 8/20


FdB: Free Database (Aka Fake Database)
By TV2k.net on 8/19


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

While the page is loading, a PLEASE WAIT message

Print
Email
 
VB icon
Submitted on: 9/25/2000 2:19:03 PM
By: PIAZZA Stephane 
Level: Beginner
User Rating: By 10 Users
Compatibility:HTML

Users have accessed this code 26724 times.
 

(About the author)
 
     Add those lines at the beginning of your page if there is a lot of pictures aso. While loading, a message will appear and will be hidden when the page will be fully loaded. Enjoy it ... And if u like it .... rate it .... Let's go to www.editeurjavascript.com to find a lot of javascript programs as this one.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

    '**************************************
    ' Name: While the page is loading, a PLE
    '     ASE WAIT message
    ' Description:Add those lines at the beg
    '     inning of your page if there is a lot of
    '     pictures aso.
    While loading, a message will appear and will be hidden when the page will be fully loaded.
    Enjoy it ... And if u like it .... rate it ....
    Let's go To www.editeurjavascript.com to find a lot of javascript programs as this one.
    ' By: PIAZZA Stephane
    '
    'This code is copyrighted and has    ' limited warranties.Please see http://w
    '     ww.Planet-Source-Code.com/xq/ASP/txtCode
    '     Id.6333/lngWId.4/qx/vb/scripts/ShowCode.
    '     htm    'for details.    '**************************************
    
    <BODY onLoad="cacheOff()">
    <!-- BEGINNING OF THE SCRIPT -->
    <STYLE TYPE="text/css">
    <!-- 
    #cache {
    position:absolute; left=10; top:10px; z-index:10; visibility:hidden;
    }
    -->
    </STYLE>
    <!--
    Lines above are creating a layer which show a message
    displaying the 'PLEASE WAIT ... ' message
    -->
    <SCRIPT LANGUAGE="JavaScript">
    ver = navigator.appVersion.substring(0,1)
    if (ver >= 4)
    	{
    	document.write('<DIV ID="cache"><TABLE WIDTH=400 BGCOLOR=#000000 BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD ALIGN=center VALIGN=middle><TABLE WIDTH=100% BGCOLOR=#FFFFFF BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN=center VALIGN=middle><FONT FACE="Arial, Verdana" SIZE=4><B><BR>PLEASE WAIT ... <BR><BR></B></FONT></TD> </TR></TABLE></TD> </TR></TABLE></DIV>');
    	var navi = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4);
    	var HIDDEN = (navi) ? 'hide' : 'hidden';
    	var VISIBLE = (navi) ? 'show' : 'visible';
    	var cache = (navi) ? document.cache : document.all.cache.style;
    	largeur = screen.width;
    	cache.left = Math.round(100);
    	cache.visibility = VISIBLE;
    	}
    function cacheOff()
    	{
    	if (ver >= 4)
    		{
    		cache.visibility = HIDDEN;
    		}
    	}
    </SCRIPT>
    <!--
    When the page will be fully loaded, the message will be hidden
    -->


Other 4 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
9/29/2000 12:18:27 AM:eyekron
This is a pretty nice little tool... 
how would I center the window in the 
document area? ie not at position 
(10,10) but take the height of the 
document area div by 2 add the height 
of the table to get the top position... 
then do something of the same thing for 
the width...  is this possible?  if so 
how?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/29/2000 3:06:34 AM:Chris
Humm.... It's great, but it's not ASP, 
and it's not your code !! Look at this 
url : 
http://www.editeurjavascript.com/scripts
/scripts_autres_11.php. It's a really 
good french site. Sorry.... ;o)))
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/29/2000 2:35:35 PM:Jerry
Worked pretty well . . . in IE, but 
wouldn't unload in Netscape.  Anybody 
else have the same experience?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/29/2000 2:36:31 PM:Jerry
Worked pretty well . . . in IE, but 
wouldn't unload with Netscape.  Anybody 
else experience the same thing?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | ASP/ VbScript Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.