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

  • Users: pamam
  • Order by date
  1. pamam

    ASP Memory Leaks

    Hi all, I'm having a problem detecting memory leaks, I've plugged up all the leaks that I can find, like nothing'ing objects, and closing recordsets before they are closed. I've gone to the extreme and still no results. The ASP memory is not very large (2.5MB), but the mtx.exe's (70-90MB)...
  2. pamam

    Accessing Server Registry from ASP

    Thanks Swany, That's what I wanted to know. I would need to make an activex control of some sort to access it because there is no direct access method available. Or put the directories in the global.asa file. Mel
  3. pamam

    Accessing Server Registry from ASP

    It's an intranet, But can it be done??? and How would I do it if it can be done. Mel
  4. pamam

    Accessing Server Registry from ASP

    Richard, Well no, but I would like to read it. We have different sites that we use for production, development, and QA. This have different directories and we end up having to hard code different values into our ASP which have to be changed depending on the site. We set up the registry with...
  5. pamam

    Accessing Server Registry from ASP

    HI, I would like to access the registry and change it or remove entries from it or just to read it from within an asp file rather than hardcoding directories into the asp file. Is there an easy way to do this?? Mel
  6. pamam

    Setting Objects to nothing sets others to nothing also

    Since "x" is an object pointer and not a class name set session("z") = new x does not work at all, I tried it!! Also according to MSDN when you assign a new variable say newvar by setting it such: set newvar = x, then newvar gets a pointer to x and the object is not deleted...
  7. pamam

    Setting Objects to nothing sets others to nothing also

    It is immaterial what the code is trying to do. This is a conceptual question. And that is if I create an object in ASP using server.createobject, then store it in a session variable, then delete the originally cretaed object by setting it to nothing, should the session object also be null at...
  8. pamam

    Setting Objects to nothing sets others to nothing also

    When I create an object using Server.CreateObject e.g. set x = Sever.CreateObject("y") then save it in Session("z") set Session("z") = x then set x to nothing the session("z") also is nothing set x = nothing now session("z") is also nothing...
  9. pamam

    Deleting object also deletes copy stored in session object???

    Actually we used the Server.CreateObject and then the Object is stored in the Session(SES_SRSDOCUMENTOBJ) like this set Session(SES_SRSDOCUMENTOBJ) = SERVER.CreateObject("NECDocLibSRS.NECServiceRequestDocumentSRS") then we use this to get the recordset set recRequestByCust =...
  10. pamam

    Deleting object also deletes copy stored in session object???

    Hi, The problem is as follows. <!-- xyz is our own concoction--> set recRequestByCust = CreateObject(xyz) <!--save it for future use by another page--> If IsObject(recRequestByCust) Then set Session(&quot;RECORDSET&quot;) = recRequestByCust <!-- I'm done with rec now, and to avoid a memory...
  11. pamam

    ASP Session Variables for Objects

    I made an error, I left out the &quot;set&quot; command with the line Session(&quot;RECORDET&quot;) = recRequestByCust, it should be set Session(&quot;RECORDET&quot;) = recRequestByCust, I have it in the code, just not the posting. Mel
  12. pamam

    ASP Session Variables for Objects

    Hi, I'm new to ASP and so this is confusing. The problem is as follows. <!-- xyz is our own concoction--> set recRequestByCust = CreateObject(xyz) <!--save it for future use by another page--> If IsObject(recRequestByCust) Then Session(&quot;RECORDSET&quot;) = recRequestByCust <!-- I'm done...

Part and Inventory Search

Back
Top