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