PLEASE HELP! Getting Error -214746259

PLEASE HELP! Getting Error -214746259

am 07.10.2007 15:29:59 von Debbie

I wonder if anyone can help me out, or point me in the right direction, in
solving my current problem:

I have started seeing an error on one of my ASP pages. Id displays totally
blank except for two lines, as follows:

'80004005'
?, line 0

There is no more information on the page other than that. I have managed to
establish that the error number is -2147467259. I haven't got a clue where
to even begin looking because there is so little information from the error
to suggest what is wrong.

Has anyone else seen anything like this? Does anyone have any suggestions?

Many thanks in advance - Debbie

Re: PLEASE HELP! Getting Error -214746259

am 07.10.2007 18:01:07 von Anthony Jones

"Debbie" wrote in message
news:G7adnerBQLv9QpXanZ2dnUVZ_hOdnZ2d@adelphia.com...
> I wonder if anyone can help me out, or point me in the right direction, in
> solving my current problem:
>
> I have started seeing an error on one of my ASP pages. Id displays
totally
> blank except for two lines, as follows:
>
> '80004005'
> ?, line 0
>
> There is no more information on the page other than that. I have managed
to
> establish that the error number is -2147467259. I haven't got a clue
where
> to even begin looking because there is so little information from the
error
> to suggest what is wrong.
>
> Has anyone else seen anything like this? Does anyone have any
suggestions?
>

Here is a clue Google: ASP 80004005


--
Anthony Jones - MVP ASP/ASP.NET

Re: PLEASE HELP! Getting Error -214746259

am 07.10.2007 18:43:25 von reb01501

Debbie wrote:
> I wonder if anyone can help me out, or point me in the right
> direction, in solving my current problem:
>
> I have started seeing an error on one of my ASP pages. Id displays
> totally blank except for two lines, as follows:
>
> '80004005'
> ?, line 0
>
> There is no more information on the page other than that. I have
> managed to establish that the error number is -2147467259. I haven't
> got a clue where to even begin looking because there is so little
> information from the error to suggest what is wrong.
>
> Has anyone else seen anything like this? Does anyone have any
> suggestions?
> Many thanks in advance - Debbie
With so little to go on, all I can do is point you to this page:
http://tutorials.aspfaq.com/8000xxxxx-errors/80004005-errors .html

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Re: PLEASE HELP! Getting Error -214746259

am 08.10.2007 18:55:35 von Debbie

That's just it - there is NOTHING else to go on! I've searched the internet
and read about other peoples experience with this error, but all of them had
more information displayed with it. I have nothing else with my error
except lots of white space!! This is a nightmare for me.


"Bob Barrows [MVP]" wrote in message
news:eHAcrEQCIHA.1164@TK2MSFTNGP02.phx.gbl...
> With so little to go on, all I can do is point you to this page:
> http://tutorials.aspfaq.com/8000xxxxx-errors/80004005-errors .html
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
>

Re: PLEASE HELP! Getting Error -214746259

am 08.10.2007 19:11:51 von exjxw.hannivoort

Debbie wrote on 08 okt 2007 in microsoft.public.inetserver.asp.general:

> "Bob Barrows [MVP]" wrote in message
> news:eHAcrEQCIHA.1164@TK2MSFTNGP02.phx.gbl...
>> With so little to go on, all I can do is point you to this page:
>> http://tutorials.aspfaq.com/8000xxxxx-errors/80004005-errors .html

> That's just it - there is NOTHING else to go on! I've searched the
> internet and read about other peoples experience with this error, but
> all of them had more information displayed with it. I have nothing
> else with my error except lots of white space!! This is a nightmare
> for me.

[Please do not toppost on usenet]

Now start debugging, that is an art to be learned!

Take out or remark a few lines at a time,
simplifying your code till the error disapears.

Or insert breakpoints:

<%
response.write "Breakpoint 7"
response.end
%>

and see how far the code runs without an error.

And then reason with yoursself finding out
where something did go wrong.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: PLEASE HELP! Getting Error -214746259

am 08.10.2007 19:23:47 von Debbie

Thanks! Will start on that this afternoon.

Do you have any idea what the "?, line 0" in the error refers to? I thought
it meant that there was a problem before any of the page could write itself
out.

Re: PLEASE HELP! Getting Error -214746259

am 08.10.2007 19:33:03 von exjxw.hannivoort

Debbie wrote on 08 okt 2007 in microsoft.public.inetserver.asp.general:

> Thanks! Will start on that this afternoon.

This is not email, but usenet.

[please always quote on usenet]

> Do you have any idea what the "?, line 0" in the error refers to? I
> thought it meant that there was a problem before any of the page could
> write itself out.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: PLEASE HELP! Getting Error -214746259

am 08.10.2007 20:27:45 von reb01501

Debbie wrote:
> Thanks! Will start on that this afternoon.
>
> Do you have any idea what the "?, line 0" in the error refers to? I
> thought it meant that there was a problem before any of the page
> could write itself out.

In my experience, it usually indicates a problem in the client-side script.

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Re: PLEASE HELP! Getting Error -214746259

am 10.10.2007 03:47:37 von Brian Staff

Debbie,

My first question is this: wheere are you getting this "error" information
from?

Is it inside the browser window or is it a small popup window?

If it's inside the browser window, then that indicates it is a server-side
error.

If it's inside a small popup window, then that tells me that you have a
client-side script error.

Once that is established, we'll go onto step 2

--
Brian
"Debbie" wrote in message
news:G7adnerBQLv9QpXanZ2dnUVZ_hOdnZ2d@adelphia.com...
>I wonder if anyone can help me out, or point me in the right direction, in
>solving my current problem:
>
> I have started seeing an error on one of my ASP pages. Id displays
> totally blank except for two lines, as follows:
>
> '80004005'
> ?, line 0
>
> There is no more information on the page other than that. I have managed
> to establish that the error number is -2147467259. I haven't got a clue
> where to even begin looking because there is so little information from
> the error to suggest what is wrong.
>
> Has anyone else seen anything like this? Does anyone have any
> suggestions?
>
> Many thanks in advance - Debbie
>

Re: PLEASE HELP! Getting Error -214746259

am 10.10.2007 08:13:25 von Brian Staff

Now, having re-read the original posting again, I think it might be a
server-side script error. If so, then post the few lines of the ASP page
here.

--
Brian
"Brian Staff" wrote in message
news:%23O3wH%23tCIHA.3712@TK2MSFTNGP02.phx.gbl...
> Debbie,
>
> My first question is this: wheere are you getting this "error" information
> from?
>
> Is it inside the browser window or is it a small popup window?
>
> If it's inside the browser window, then that indicates it is a server-side
> error.
>
> If it's inside a small popup window, then that tells me that you have a
> client-side script error.
>
> Once that is established, we'll go onto step 2
>
> --
> Brian
> "Debbie" wrote in message
> news:G7adnerBQLv9QpXanZ2dnUVZ_hOdnZ2d@adelphia.com...
>>I wonder if anyone can help me out, or point me in the right direction, in
>>solving my current problem:
>>
>> I have started seeing an error on one of my ASP pages. Id displays
>> totally blank except for two lines, as follows:
>>
>> '80004005'
>> ?, line 0
>>
>> There is no more information on the page other than that. I have managed
>> to establish that the error number is -2147467259. I haven't got a clue
>> where to even begin looking because there is so little information from
>> the error to suggest what is wrong.
>>
>> Has anyone else seen anything like this? Does anyone have any
>> suggestions?
>>
>> Many thanks in advance - Debbie
>>
>
>