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 bkrike 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 Aamin

  1. Aamin

    Site Hanging on Occasion

    No, they did not provide me with any logs. They said that the server that the site is on has other sites on it as well and that those sites never have a prb when this site goes down. They said that i should try using DSN instead becuz it has a built-in Conneciton Pooling element that may help...
  2. Aamin

    Site Hanging on Occasion

    I talked to the ISP and they concluded that the code that creates the DB connection and recordsets have to be modified. I examined the code again and found a couple of files that I suspect may be the prb. The following is from an include file <adovbs.inc> that is included with each page: ' ADO...
  3. Aamin

    Site Hanging on Occasion

    I have a site that I maintain for a bookstore and recently it hangs whenever users try to access the home page or any other page. The browser page goes white and it seems as though its trying to find the page but it never does. I believe there is something wrong on the server side but my ISP...
  4. Aamin

    Site Hangs Occasionally

    I talked to the ISP and they concluded that the code that creates the DB connection and recordsets have to be modified. I examined the code again and found a couple of files that I suspect may be the prb. The following is from an include file <adovbs.inc> that is included with each page: ' ADO...
  5. Aamin

    Site Hangs Occasionally

    Hey Billy, I had the same idea of duplicating the site to another server. The client isn't happy with their ISP anyway so we'll wait until they're ready to make the switch. Do you think that tags that are in UPPERCASE would cause this prb? For instance, each page has the following piece of...
  6. Aamin

    Site Hangs Occasionally

    I have a site that I maintain for a bookstore and recently it hangs whenever users try to access the home page or any other page. The browser page goes white and it seems as though its trying to find the page but it never does. I believe there is something wrong on the server side but my ISP...
  7. Aamin

    Setting X and Y Coordinates of a form when it loads

    I have a MDI form that holds several child forms. I need the child forms to open at a particular location each time they are loaded. So for instance, I have a maximized MDI form that has a menu bar across the top. When i choose File-New-Member, the New Member Screen will open within the MDI...
  8. Aamin

    Attach IMG to Page After Button Click...

    I have an online registration form that the user has to fill-out in order to register a customer. Part of the form includes a section where the user needs to attach a picture of the customer onto the form that he/she is filling out (at this point the user has already taken the customer's picture...
  9. Aamin

    Recordcount = -1 , Why?

    I got it to work this way: set cmd4 = CreateObject("ADODB.Command") set rs = server.createobject("adodb.recordset" ) cmd4.ActiveConnection = conn cmd4.CommandText = "SELECT * FROM Customer Where CustLicenseNum = '" & custlnum & "'" rs.open cmd4,,1,3 I have another prb also...I need to attach...
  10. Aamin

    Recordcount = -1 , Why?

    ...After I open the connection, I have the following code: Set RS = Server.CreateObject("ADODB.Recordset") strq = "SELECT * FROM Customer Where CustLicenseNum = '" & custlnum & "'" set RS = conn.Execute(strq) if (RS.RecordCount < 1) then '"There were no records found. Please try your...
  11. Aamin

    How To Attach Files to a Customer Registration Form

    Im working on a registration form that requires the user to attach a picture taken from a webcam to the form before it is submitted. I want the picture taken with the webcam and stored in a temp. folder where they will access it using the Browse button on the registration page. After the image...
  12. Aamin

    Working with Session Variables Between Pages

    OK, another question: In this statement, <a href='page2.asp?txtSiteId=SITEID(i)'> is the querystring element being populated when the page first loads or when user clicks on the link? My goal is to populate the element when the page is loaded so that each company that is listed has a siteid...
  13. Aamin

    Working with Session Variables Between Pages

    FROM PAGE1.ASP: ... ... if session("icount") > 1 then 'Populate Arrays from Search page companyname = session("companyname") searchaddress = session("searchaddress") SITEID = session("id") prov = session("prov") city = session("city") 'Create Table response.write("<tr>")...
  14. Aamin

    Working with Session Variables Between Pages

    Hey DreX, thx for your help. How do I incorporate querystrings into Hrefs exactly?
  15. Aamin

    Working with Session Variables Between Pages

    This is what i have: (from page1.asp...) <% for i = 0 to (session("icount") - 1) response.write("<tr>") response.write("<td><a href='page2.asp')> ") response.write(companyname(i) + "</a></td>" next %> The user will be presented with a list of companies. WHen the user clicks on a company...

Part and Inventory Search

Back
Top