sesson- server.createobject

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Re: sesson- server.createobject

    > can i put my object in a session variable?

    only if it's free-threaded and even then I'd advise against it because
    memory overhead can skyrocket if you do. you could even bring a server
    to its knees with a decent level of traffic which ordinarily it would
    have coped with.





    ________________________________________
    Why? Why was I programmed to feel pain?

    Atrax. MVP, IIS
    [url]http://rtfm.atrax.co.uk/[/url]

    newsflash : Atrax.Richedit 1.0 now released.
    click the link above!

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Atrax Guest

  2. Similar Questions and Discussions

    1. Server.CreateObject error
      I am getting an error while executing the line, Server.CreateObject. The error is Server object, ASP 0177 (0x800AEA5F) I am using IIS5,...
    2. Error ASP 0178 on Windows 2003 Server (IIS6) by Server.CreateObject on DCOM registred Component
      Heres is a workaround, 1. go to Administrative Tools> Component Services 2. expand COM Services and right click on My computer. 3. click...
    3. Server.CreateObject
      er... you can't. not like that anyway. you could in theory pull a list of all COM objects from the registry, but only a small proportion will be...
    4. 006~ASP 0177~Server.CreateObject Failed~
      I am trying to communicate between an ASP page and a SQL database and I am getting the following error message on the browser: 006~ASP...
    5. Out of memory: 'Server.CreateObject'
      Hi group! I am getting the following error from my ASP application: Microsoft VBScript runtime error '800a0007' Out of memory:...
  3. #2

    Default Re: sesson- server.createobject

    > can i put my object in a session variable?

    Can you? Yes. Should you? In most cases, absolutely not.
    [url]http://www.aspfaq.com/2053[/url]



    "Bob Purcell" <robspur@mentallyimpaired.com> wrote in message
    news:#hDOh3bPDHA.2160@TK2MSFTNGP11.phx.gbl...
    > can i put my object in a session variable?
    >
    >

    Aaron Bertrand [MVP] Guest

  4. #3

    Default Re: sesson- server.createobject

    VB6 persistable object can be stored in session and could be if wished (see
    solution below).
    Non-persistable objects should not be stored in session. Be smart :)

    --
    compatible web farm Session replacement for Asp and Asp.Net
    [url]http://www.nieropwebconsult.nl/asp_session_manager.htm[/url]

    "Bob Purcell" <robspur@mentallyimpaired.com> wrote in message
    news:%23hDOh3bPDHA.2160@TK2MSFTNGP11.phx.gbl...
    > can i put my object in a session variable?
    >
    >
    Egbert Nierop \(MVP for IIS\) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139