Error Message

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi. I'm having trouble with the home page on my web site. I get the
following error message:

Line 14
Char 5
Error: Object doesn't support this property or method
Code 0

The curious thing is that my home page has no code and is blank at
Line 14. Does anyone know what I can do to eliminate the error. I
don't want people going to my web site and getting an error message
from the get go.

Thanks in advance.
 
Can you provide a URL to this on the internet?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
When you publish, do you have Optimize HTML enabled, if so disable it and publish and test your
page.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Yes, it was enabled, so I disabled it and then republished. I got the
same error message though.

any other suggestions? My web host keeps blaming everything on FP 2003
and it's inability to correctly talk to their unix servers.
 
Incidentally, I compared the error message:

Line 14
Char 5
Error: Object doesn't support this property or method Code 0

to the code in my home page. The curious thing is that my home page is
blank at Lines 14 and 15. The code begining at Line 13, and with lines
14 and 15 blank, is:

<!--


function MM_jumpMenu(targ,selObj,restore){ //v3.0

eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->


I don't know html, so I'm not sure what if anything is wrong with the
code. Do you know what might be wrong. Any help is much appreciated.
 
The JavaScript error is not related to using FP or the server, however I can not generate any
errors. The error may actually be in the external.js files.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
I'm not sure what the external.js files is. Can you please tell me
what I need to do to eliminate the error message. While you may not
get the error message, I would feel better if I knew no one else will.

thanks again
 
These are your external linked JS files:

<script src="javascript/special_functions.js"></script>
<script src="javascript/page_audio.js"></script>


However now that you page source is more normal, since disabling Optimize HTML, line 14 I think
applies to the following (browsers don't count blank lines):

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
I really have no idea, but it deal with your drop down menu. What did you use to create it?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Mike said:
So, is there any change to the script that I need to make?




These are your external linked JS files:

<script src="javascript/special_functions.js"></script>
<script src="javascript/page_audio.js"></script>


However now that you page source is more normal, since disabling Optimize HTML, line 14 I think
applies to the following (browsers don't count blank lines):

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
 
FP didn't write that script.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Back
Top