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 Mike Lewis 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. lasers

    Installed PHP, now other pages on localhost do not work

    I installed PHP manually on my windows XP SP3 machine running IIS 5.1. I went through all the documented installation steps and finally got a simple PHP page working. I then checked some of my other web pages on localhost using a browser, and they do not display properly. For some reason the...
  2. lasers

    Strange issues with IE8

    I noticed that while using IE8 on my home computer, certain websites don't behave the same as when I use them on my work computer with the same browser. For example, using the website http://www.tmx.com. Type in anything in the "Get Quote" box and click Go. Then when the next page loads, type...
  3. lasers

    Memory Leak for simple ASP

    I'm trying to figure out why there is such a memory leak with a simple asp script like that shown below. Option Explicit dim dCon, sqlStat, rs, i Set dCon = Server.CreateObject("ADODB.Connection") dCon.ConnectionTimeout=20 dCon.open "Driver={SQL...
  4. lasers

    IIS7 Session Timeout

    I have an application set up in IIS. I have the Session timeout property set for 3 hours. The session times out after the default 20 min. How can I set the session timeout in IIS7 for 3 hours? Using Session.Timeout in the ASP page has no effect. OS is Windows Server 2008. thanks
  5. lasers

    ASP and SQL stored procedure - too many arguments

    I have a SQL stored procedure like this: CREATE PROCEDURE [dbo].[myStoredProc] @NameList varchar(5000) as select * from dbo.MyTable where UserName in (@NameList) go In my asp page I have this code: nameList = "'john','mary','sue','dave'" rs.open "exec myStoredProc " & nameList, dCon I get...
  6. lasers

    Image from ASP page in Access Report

    I would like to be able to embed an image generated from an ASP page on the web into an MS Access report. Does anyone know if/how this can be done? The asp page requires a querystring with a few parameters in it (e.g. address) and renders a map image. I would like this map image displayed on...
  7. lasers

    Inventory all files using FileSystemObject

    I need to inventory all files on my computer (or other computers) using MS Access and VB. The file inventory will be inserted into an Access table (I'm good with that part). I am having trouble figuring out how to navigate all the files in all the folders and subfolders on the hard drive...
  8. lasers

    Request.Form adds comma to form value in FireFox

    Sheco: yes, I get the comma if the field is empty. as a test I moved some form elements outside of an absolutely positioned div, and the comma went away when the form was submitted. Now the thing with this div, is that when the page loads it has it's visibility property set to "hidden". Then...
  9. lasers

    Request.Form adds comma to form value in FireFox

    I have an html form on an asp page and when the form is submitted, I collect the values from the form in ASP using Request.Form("fieldName"). All of the form values are collected properly in IE, but in FireFox the values all have commas after them. Why would this be? I have confirmed the...
  10. lasers

    Ajax works on localhost not on web server with FireFox

    the status code returned is 411 something to do with Content-length ? Why would I not get this error on localhost?
  11. lasers

    Ajax works on localhost not on web server with FireFox

    I have an ajax script that works in IE6 and FireFox on my localhost. When I moved everything to a webserver, the ajax script no longer works in FireFox. It does not get past: if(XMLHttpRequestObject.readyState==4 && (!XMLHttpRequestObject.status || XMLHttpRequestObject.status==200)){...
  12. lasers

    IE 6 shortcuts, links open 2 browser windows

    My system: Windows XP Pro SP 2 Pentium M 2.00GB RAM When I click a desktop shortcut for IE, I get 2 browser windows opening, and then they "freeze" for about 20 seconds, and then one of the windows goes to the address defined in the shortcut. It also happens when I click a link on a web site...

Part and Inventory Search

Back
Top