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!

Search results for query: *

  • Users: asuknow
  • Content: Threads
  • Order by date
  1. asuknow

    help! value of Server.Variables("server_name") of a domain pointer

    If I have www.x.com and www.y.com point to the same IP address (same web site), and www.x.com is the primary domain. Would you please tell me what the respective value of Server.Variables("server_name") is if I accessed the web site via www.x.com and www.y.com respectively? Foe...
  2. asuknow

    How to indentify the subdomain in ASP ???

    Supppose I have a subdomain called "sub.mydomain.com" pointing to a directory "/sub" under http://www.mydomain.com/ . I also have mysub.asp under /sub. if I use server_name in serverviriables in mysub.asp to detect the server name, will I get a value of...
  3. asuknow

    How can I convert and ACCESS database to MSSQL database?

    Is there any software/tools to do that? If I convert an ACCESS database to a MSSQL database, will that make reading and writing a database faster? Do I need to modify ASP script a lot to make it faster? Will most of my ASP for accessing ACCESS database still work for accessing MSSQL databse...
  4. asuknow

    How to use a Javascript variable in VBscript in ASP?

    e.g.: < script language=Javascript runat=server> x=100 </script> < script language=Vbcript runat=server> how can I get the value of x from Javascript? </script> Thanks for your tips!
  5. asuknow

    How to detect the TIME ZONE of a hosting server by VBSCRIPT

    the time zone in client side is constant, For example: GMT -4 But I may change the hosting server later, and the hosting server may be in a diffferent Time Zone from the first hosting server. If the client Time Zone is GMT -4 and the Time Zone of the hosting server may vary, how can I use...
  6. asuknow

    What's your idea of designing an efficient shopping cart?

    I know some experts suggest not to store memory-consuming object(though those objects may need to be created very frequently)in session. Some people tend to use very few session variables for the whole web site per user. Shopping Cart is a very special user status, could anyone tell me...
  7. asuknow

    Do I need to close a RS or Connection before Set it to Nothing

    Do I really need to use RS.close before I Set RS=Nothing ? Does this apply to database conneciton as well? What can be the consequence if I set a RS (or a db connection) to Nothing directly without closing it? Another puzzle, for example: After a RS is opened by Set RS=dbconn.execute(sql) I...
  8. asuknow

    Why couldn't I view JAVA applet in .ASP files???

    I paste some java applet into x.asp files, and could NOT see any applet executing when I view x.asp under Personal Web Server. and more surprsingly, after the web page of x.asp was shown on the browser, I looked at the source of the x.asp in the browser, the JAVA applet codes were even NOT in...
  9. asuknow

    Close Recordset v.s. and Set Recordset=Nothing

    Suppose a recordset needs to be opened everytime any web page is loaded on a web site. Would anyone please compare the advantages and disadvantages between closing a recordset and set a recordset to nothing?
  10. asuknow

    how can I join two tables of the same structure into one talbe?

    e.g.: I have two tables, one is &quot;fruit&quot;, the other is &quot;drink&quot; &quot;fruit&quot; has the following data structure: name price apple 0.8 orange 1.0 grape 0.99 &quot;drink&quot; has the following data structure: name price water 1.00...

Part and Inventory Search

Back
Top