actually i figured it out, it's because in their HTML codes,
the top part is a 1st level table by itself, so the browser can go ahead and display it. Just look at the source code of this page. If the entire page is one big table, then the browser won't display anything until the entire page is...
hey guys,
reload this page, pay attentation to the loading process of this page: the banner is loaded and displayed first, then after the rest of content is fully loaded, it is displayed.
most big websites have their pages coded this way, so that the user will get to see the top part of the page...
ToddWW is right.
You need to have a better idea of the differences between your programming mode-ASP or client side VBS. I think you probably should read more books/tutorials on Server/Client.
change the line
Resp = window.confirm (" & orderId & ")
to
Resp = window.confirm (<%=Orderid%>)
source of error:
when you surround any value by the doublequotes, vbscript treats the value surrounded by as a string value itself.
in order to interact with the variable orderid, you...
what are some ways to load part of the page and display it in the browser before the entire page is downloaded?
i used response.buffer=true and response.flush, but that doesn't result in showing the parts of the content that's already downloaded. it still only displays the page after the entire...
hey people,
i've created a new asp forum and i am looking for people who want to create their forums on my site and/or be the moderators for these forums.
http://yitang.brinkster.net/new/products/forum-t
i don't think it's the problem with the javascripts.
i took all the javascripts out, and it still freezes when loading in netscape (before anything shows up in the browser). vasah20, thank you for the db connection suggestion though.
no, there's absolutely no java applets.
here's the code that's causing the page to freeze in netscape.
<%
Sql_query = "SELECT * FROM msgbdmain Order By PostDate DESC"
Set msgs = Application("MainDBConn").execute(Sql_query)
dim counter
counter = 0
While Not...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.