472,147 Members | 1,265 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,147 software developers and data experts.

PLEASE HELP! Getting Error -214746259

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
Oct 7 '07 #1
9 2217
"Debbie" <br******@hotmail.comwrote in message
news:G7******************************@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
Oct 7 '07 #2
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/8000xxxx...05-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"
Oct 7 '07 #3
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]" <re******@NOyahoo.SPAMcomwrote in message
news:eH**************@TK2MSFTNGP02.phx.gbl...
With so little to go on, all I can do is point you to this page:
http://tutorials.aspfaq.com/8000xxxx...05-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"

Oct 8 '07 #4
Debbie wrote on 08 okt 2007 in microsoft.public.inetserver.asp.general:
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:eH**************@TK2MSFTNGP02.phx.gbl...
>With so little to go on, all I can do is point you to this page:
http://tutorials.aspfaq.com/8000xxxx...05-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)
Oct 8 '07 #5
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.
Oct 8 '07 #6
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)
Oct 8 '07 #7
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"
Oct 8 '07 #8
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<g>

--
Brian
"Debbie" <br******@hotmail.comwrote in message
news:G7******************************@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

Oct 10 '07 #9
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" <brianstaff AT [NoSpam]cox DOT netwrote in message
news:%2******************@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<g>

--
Brian
"Debbie" <br******@hotmail.comwrote in message
news:G7******************************@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


Oct 10 '07 #10

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

3 posts views Thread by VB Programmer | last post: by
reply views Thread by Saiars | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.