Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tangyi

  1. tangyi

    The tek-tips forum page loading behavior

    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...
  2. tangyi

    Can ASP call .dll written by Delphi?

    you can just use anything to create COM components that can be called by ASP, that's the power of COM.
  3. tangyi

    The tek-tips forum page loading behavior

    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...
  4. tangyi

    Session variable

    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.
  5. tangyi

    verify server is up before link

    you have to write a server component that's able to ping servers, which is not that complicated. there's no way to do it with ASP's built-in objects.
  6. tangyi

    Session variable

    change the line Resp = window.confirm (&quot; & orderId & &quot;) 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...
  7. tangyi

    load part of the page and display it before the entire page is d/led

    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...
  8. tangyi

    a ASP forum program

    sorry but do you mind telling me what exactly do you mean?
  9. tangyi

    a ASP forum program

    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
  10. tangyi

    Determine the existence of a key in a cookie ?

    i'm trying to figure out how to determine the existence of a specfic key in a collection cookie. anyone has any ideas on how to do this? thanks.
  11. tangyi

    i need suggestions

    http://yitang.brinkster.net/new/products/forum-t any suggestions? thanks.
  12. tangyi

    asp page freezes in netscape when select data from database

    i'm pretty sure it's not the css ... anywayz, the style sheet is defined in that page thanks for helping
  13. tangyi

    asp page freezes in netscape when select data from database

    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.
  14. tangyi

    asp page freezes in netscape when select data from database

    no, there's absolutely no java applets. here's the code that's causing the page to freeze in netscape. <% Sql_query = &quot;SELECT * FROM msgbdmain Order By PostDate DESC&quot; Set msgs = Application(&quot;MainDBConn&quot;).execute(Sql_query) dim counter counter = 0 While Not...

Part and Inventory Search

Back
Top