This topic is locked

Cannot get header to reset

8/1/2009 5:05:36 PM
ASPRunnerPro General questions
R
rgke author

In 6.1, I typed in some text for a header which displayed correctly. However I then decided to put this text in the footer instead and therefore reset the header.

However, the text still appears in the header and I cannot get rid of it.
Is there a bug, or am i doing something wrong?

A
Aussie Mick 8/3/2009

In 6.1, I typed in some text for a header which displayed correctly. However I then decided to put this text in the footer instead and therefore reset the header.

However, the text still appears in the header and I cannot get rid of it.
Is there a bug, or am i doing something wrong?


It could be in your cache.. try pressing CTRL F5 to clear it maybe.

R
rgke author 8/3/2009



It could be in your cache.. try pressing CTRL F5 to clear it maybe.


No, I have tried that, and also I can change the header and it appears as changed. But if you try and get rid of it, it persists with the last thing you did.

J
Jane 8/3/2009

Hi,
thank you for pointing me to this bug.

We'll fix it in the next update.
To make your pages working remove header.asp from generated source/include and output/include directories.

C
clig 8/14/2009



No, I have tried that, and also I can change the header and it appears as changed. But if you try and get rid of it, it persists with the last thing you did.


here's a sample header.asp
<%@ Language=VBScript %>

<% Response.AddHeader "Pragma", "no-cache" %>

<% Response.CacheControl = "no-cache" %>

<% Response.Expires = -1 %>

<%

Response.Write("<html>")

Response.Write("<head>")

Response.Write("<META HTTP-EQUIV=""PRAGMA"" CONTENT=""NO-CACHE"">")

Response.Write("<META HTTP-EQUIV=""Expires"" CONTENT=""-1"">")

Response.Write("<meta http-equiv=""Content-Type"" content=""text/html; charset=utf-8"" />")

Response.Write("<link REL=""stylesheet"" href=""style.css"" type=""text/css"">")

Response.Write("<title></title>")

Response.Write("</head>")

Response.Write("<body lang=""en-us"" id=""IncludeHeader"" style=""border:0px;background-color:#FFFFFF;margin-top:0px;margin-left:0px;margin-right:0px;margin:0px;margin-bottom:0px;font-size:xx-small;font-family:Tahoma;font-weight:bold;top:0px;text-transform:uppercase"">")

Response.Write("</body>")

Response.Write("</html>")

%>