Template problem

J

JA

Hi,

I posted this somewhere else, but I don't think it was quite the right
place, so I'll try here. I know a little about asp, but not much.

This is on a FrontPage 2000 site.

I have a template page. A full page design. I have to split it into a header
and a footer, for some asp pages. To do this, I marked the beginning of the
content area with xxxx. Everything above that, I saved as the header.
Everything below it, I saved as the footer.

I can open the template as an ASP page or as an HTML page, and it's fine. I
can open the header (htm) or the footer (htm), and they are fine. But when I
open one of the ASP pages of my cart program (that calls the header and
footer files), I get this error message:

Active Server Pages error 'ASP 0140'
Page Command Out Of Order
/header.htm, line 1
The @ command must be the first command within the Active Server Page.

The first line on the header is:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>


But that is the same first line on all the other pages that do work. Could
it have something to do with the fact that the cart ASP pages are written in
vbscript? If so, what would I do about it?

Thanks for any help!

Jill
 
P

Phillip Windell

JA said:
I can open the template as an ASP page or as an HTML page, and it's fine. I
can open the header (htm) or the footer (htm), and they are fine. But when I
open one of the ASP pages of my cart program (that calls the header and
footer files), I get this error message:

Active Server Pages error 'ASP 0140'
Page Command Out Of Order
/header.htm, line 1
The @ command must be the first command within the Active Server Page.

The first line on the header is:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>

I haven't used FP in a long time, but I would move that line into the
top of the actual ASP page (remove it from the Header page) and then
have the ASP insert the Header page just below that line. Like this:

<Begin ASP page here>
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<Insert Header Page here>

<The rest of the ASP continues here>

<Insert the footer page here>
<End of the ASP page>

--

Phillip Windell [CCNA, MVP, MCP]
(e-mail address removed)
WAND-TV (ABC Affiliate)
www.wandtv.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,022
Latest member
MaybelleMa

Latest Threads

Top