473,466 Members | 1,360 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

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 2257
"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 thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: James | last post by:
Please help - getting very desperate! Sun, 12 October 2003 05:39 I have PHPDEV 4.2.3 from Firepages.com.au as the upgrade to 4.3.0 did not work. I also had an abortive download from PHP.NET as...
0
by: Bobbak | last post by:
Hello All, I could really use some help with this bit of code I am working on, every time I come to execute it I get an error that says "Compile Error: Argument not optional". Now I am using...
10
by: RWC | last post by:
Hello, I'm having a problem that I'm having a lot of trouble with. I'm running Access XP, with all the updates, including service pack 2. I'm on a Windows XP machine. I have a database which...
3
by: VB Programmer | last post by:
I am using the free rich text editor control from ExportTechnologies. Every once in a while I get this error (for no apparent reason). Sometimes it happens even when I'm working on a totally...
2
by: Sean Carey | last post by:
I converted a C# Upload app to VB.NET and am down to one error and was hoping someone could help me with te error. I would greatly appreciate help from anyone. Here is the error: ...
0
by: imranabdulaziz | last post by:
Dear All, I am making web application using Asp.net C#(Visual Studio2005). And Sql server 2005 as a back End I generated local mode report but as there was no printing option available . I assign...
1
imrosie
by: imrosie | last post by:
Please help with this one,,,,,I've been trying everything in my arsenal to fix this one. I'm stumped.... I"ve got a unbound combo box (customername) that has two events (on click); AfterUpdate and...
2
by: pargat.singh | last post by:
Hi Everyone: Please help as i need to write some rounding function in C#. i Wrote one but does not give me correct result. Can some one please correct me C# Codes ...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.