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 strongm 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: *

  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 ???

    One more question: What's the difference between server_name and http_host? Thanks!
  3. asuknow

    How to indentify the subdomain in ASP ???

    Thank you for your reply. I have a problem of doing this. I currently do NOT have a subdomain and I am going to apply for a subdomain soon. Before I set up a subdomain, I need to know the way to get the subdomain name in the server side script. But since I do NOT have a subdomain now, I cannot...
  4. asuknow

    Email current page?

    You can use some ASP Email COM component, specify the content type property so that you can send html email, and add html source to the body text of each email.
  5. 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...
  6. asuknow

    How can I convert and ACCESS database to MSSQL database?

    Let me ask one more question: As far as a middle to large scale online shopping mall is concened, which of the follwing database is the best? (i mean the most efficient and fatest) (1) MSSQL (2) mySQL (3) mSQL ( is it for business?) (4) ACCESS (how many concurrent userd can it...
  7. 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...
  8. 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!
  9. asuknow

    URGENT HELP NEEDED on VBSCRIP RUN TIME ERROR

    Have you really install ADO in your ASP? I know by default is should be there. Another possibility is that some important files got damaged somehow and the database engine won't work. If you have a PC, probably you can install Personal Web Server from you Windows CD or download it from...
  10. asuknow

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

    Thanks a lot for your reply. My design of shopping cart has multiple items on a single page where users can add one or more pieces of each item to the shopping cart. When it comes to validation of stock availability, if used#1 add item#1 to his shopping cart, that will not affect the...
  11. asuknow

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

    Thank you for your detailed description. So the major feature of your design is to use a table in a database as a termpory storage space for shopping cart status, which means everytime an item is added to the shopping cart, there will be an operation of INSERTION into that databse, and...
  12. 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...
  13. asuknow

    asp page is displayed but something is not done

    Do you have advertisement on you site? and those ads have image links to other web sites?
  14. 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...
  15. asuknow

    How to access variables when submitted via POST method.

    if are using IIS5.0, you can use server.transfer() function to transfer the posted data to another web page without any other redirecton.
  16. 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...
  17. asuknow

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

    Thank you for your reply. I do put the java applet code in the same directory as the asp files and the reference to apllet files is correct. I dont understand when I paste the java applet reference into an .htm file and save this .htm file in the same directory where the .asp and apllet is, the...
  18. 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...
  19. asuknow

    Close Recordset v.s. and Set Recordset=Nothing

    Thank Denis and DesperateCoder for your reply. I am always wondering: Why do so many tech experts suggest not to store recordset or connection in session or application variables? To my konwledge, open a connection and a recordset also consumes a lot of server performance (maybe connection...

Part and Inventory Search

Back
Top