Our web site sometime down with unknown reasons, someone
can help me? I checked application log in event viewer:

1.Error: File confirmation.asp CreateObject Exception.
The CreateObject of '(null)' caused exception C0000094.
(But I didn't use ADO recordset session variable)
2.Error: File confirmation.asp Unexpected error. A
trappable error (C000001E) occurred in an external object.
The script cannot continue running..
(But I checked VBScript.dll version it is above 5.1, it is
5.6, it should not have formatnumber race condition
problem)
any clue? Thanks Betty

Re: website is down because of ASP code by Aaron

Aaron
Mon Jun 21 13:30:02 CDT 2004

Maybe you could show us the code in confirmation.asp? Since the error talks
about createObject, it is unlikely to have anything to do with formatNumber.
Curious why you jumped to that conclusion.

--
http://www.aspfaq.com/
(Reverse address to reply.)




"betty" <anonymous@discussions.microsoft.com> wrote in message
news:1f0cb01c457bc$ead19b50$a601280a@phx.gbl...
> Our web site sometime down with unknown reasons, someone
> can help me? I checked application log in event viewer:
>
> 1.Error: File confirmation.asp CreateObject Exception.
> The CreateObject of '(null)' caused exception C0000094.
> (But I didn't use ADO recordset session variable)
> 2.Error: File confirmation.asp Unexpected error. A
> trappable error (C000001E) occurred in an external object.
> The script cannot continue running..
> (But I checked VBScript.dll version it is above 5.1, it is
> 5.6, it should not have formatnumber race condition
> problem)
> any clue? Thanks Betty



Re: website is down because of ASP code by betty

betty
Mon Jun 21 14:09:43 CDT 2004

For i = 0 to 4
Set Participant(i) = CreateObject
("Scripting.Dictionary")
Next

There is nothing special there. I should put the error
message 2. as first and Error Message 1. as second. I
believe the error message 1. is because is website is down.
then it cannot create object anymore.
2.Error: File confirmation.asp Unexpected error. A
>> trappable error (C000001E) occurred in an external
object. The script cannot continue running.

I guess the above error message is the issue here. look at
this link and you will know what I am talking about.
http://support.microsoft.com/default.aspx?scid=kb;en-
us;244787&Product=asp


>-----Original Message-----
>Maybe you could show us the code in confirmation.asp?
Since the error talks
>about createObject, it is unlikely to have anything to do
with formatNumber.
>Curious why you jumped to that conclusion.
>
>--
>http://www.aspfaq.com/
>(Reverse address to reply.)
>
>
>
>
>"betty" <anonymous@discussions.microsoft.com> wrote in
message
>news:1f0cb01c457bc$ead19b50$a601280a@phx.gbl...
>> Our web site sometime down with unknown reasons, someone
>> can help me? I checked application log in event viewer:
>>
>> 1.Error: File confirmation.asp CreateObject Exception.
>> The CreateObject of '(null)' caused exception C0000094.
>> (But I didn't use ADO recordset session variable)
>> 2.Error: File confirmation.asp Unexpected error. A
>> trappable error (C000001E) occurred in an external
object.
>> The script cannot continue running..
>> (But I checked VBScript.dll version it is above 5.1, it
is
>> 5.6, it should not have formatnumber race condition
>> problem)
>> any clue? Thanks Betty
>
>
>.
>

Re: website is down because of ASP code by Scott

Scott
Tue Jun 22 10:10:45 CDT 2004

"betty" <anonymous@discussions.microsoft.com> wrote in news:1f5e601c457c3
$4f7c4540$a101280a@phx.gbl:

> For i = 0 to 4
> Set Participant(i) = CreateObject
> ("Scripting.Dictionary")
> Next

It should be Server.CreateObject("Scripting.Dictionary")