Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Error in ASP


Message #1 by "Andy" <andy@t...> on Wed, 12 Feb 2003 01:24:22 +0800
Hello

I am getting the below message some times when I browse the site .

Microsoft VBScript runtime error '800a0007' 

Out of memory: 'CreateObject' 

/nestchat/checkuser.asp, line 77 


Any idea how to fix it?


Thanks.


Andy

Message #2 by Mark Eckeard <meckeard2000@y...> on Tue, 11 Feb 2003 09:49:51 -0800 (PST)
Andy,

Can you send us your code?  How about line 77?

Mark
--- Andy <andy@t...> wrote:
> Hello
> 
> I am getting the below message some times when I
> browse the site .
> 
> Microsoft VBScript runtime error '800a0007' 
> 
> Out of memory: 'CreateObject' 
> 
> /nestchat/checkuser.asp, line 77 
> 
> 
> Any idea how to fix it?
> 
> 
> Thanks.
> 
> 
> Andy
> 
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com
Message #3 by "Lucas Haines" <LucasHaines@a...> on Tue, 11 Feb 2003 10:01:33 -0800
what does line 77 day in Checkuser.asp?

-----Original Message-----
From: Andy [mailto:andy@t...]
Sent: Tuesday, February 11, 2003 9:24 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Error in ASP


Hello

I am getting the below message some times when I browse the site .

Microsoft VBScript runtime error '800a0007'

Out of memory: 'CreateObject'

/nestchat/checkuser.asp, line 77


Any idea how to fix it?


Thanks.


Andy



Message #4 by "Andy" <andy@t...> on Wed, 12 Feb 2003 02:04:50 +0800
Hello,

I have copy part of the code out :

sub CheckUsersParams(UserName, UserPassword)
 dim UserStatus
 dim Users

 if UserName ="" or UserPassword ="" then exit sub

 set oUsers=CreateObject("NestUsers.clsUsers") <--------- This is the line
77

 if not
oUsers.OpenConnection("Provider=SQLOLEDB;UID=aaa;PWD=aaaa;Server=1.1.1.1;Dat
abase=test") then
  ErrorDescription=oUsers.getErrorObject.Description
  exit sub
 end if

 UserStatus=oUsers.CheckUser(cstr(UserName), cstr(UserPassword))


Thanks


Andy

----- Original Message -----
From: "Lucas Haines" <LucasHaines@a...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Wednesday, February 12, 2003 2:01 AM
Subject: [asp_web_howto] RE: Error in ASP


> what does line 77 day in Checkuser.asp?
>
> -----Original Message-----
> From: Andy [mailto:andy@t...]
> Sent: Tuesday, February 11, 2003 9:24 AM
> To: ASP Web HowTo
> Subject: [asp_web_howto] Error in ASP
>
>
> Hello
>
> I am getting the below message some times when I browse the site .
>
> Microsoft VBScript runtime error '800a0007'
>
> Out of memory: 'CreateObject'
>
> /nestchat/checkuser.asp, line 77
>
>
> Any idea how to fix it?
>
>
> Thanks.
>
>
> Andy
>
>
>
>
>
>


  Return to Index