Problemer med danske tegn
Jeg har denne kildekode, hvor jeg har problemer med at få vist danske tegn som æøå.i min default.asp som denne side er, der kan de danske tekst sagtens vises.
I min start.asp som er include, er der danske tegn deri, vises de ikke korrekt..
Hvordan kan det være det kun er i mine include filer?
<%@ language="vbscript" codepage="1252" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da">
<head>
<meta http-equiv="Cache-Control" content="no-store" />
<meta http-equiv="Content-language" content="dan" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>CPHBN.DK</title>
<style type="text/css">
body {
margin: 0px 0px 0px 0px;
text-align: center;
background: url('images/background.jpg');
background-repeat: repeat-x;
background-position: top;
background-color: #5C7C8E;
font-family:Verdana;
font-size:11px;
color:#5C7C8E;
}
#content {
background-color:#506F83;
width: 850px;
margin:0px auto;
}
#content2 {
background-color:#506F83;
width: 830px;
margin:0px auto;
}
#contentbottom {
background: #506F83 url('images/contentbottom.jpg');
width: 850px;
height:24px;
margin:0px auto;
}
#logotop{
background-image:url('images/topimage.jpg');
height:200px;
width:830px;
}
#contentCol{
float:left;
width:810px;
background-color:#2B485B;
text-align:left;
padding:10px;
}
#leftCol{
float:left;
width:150px;
text-align:left;
border: 0px solid #506F83;
}
#rightCol{
float:right;
width:630px;
text-align:left;
border: 1px solid #506F83;
background-color:#3E5F74;
height:400px;
padding:5px;
color:#EFEFEF;
}
#clearer{clear:both;height:1px;}
.tabmenu{
background-image:url(images/toptabbg.gif);
height:24px;
float:left;
width:830px;
text-align:left;
font-weight:bold;
font-size:11px;
}
a.tabactive_80:hover, a.tabinactive_100:hover, a.tabinactive_80:hover{
color:#EFEFEF;
}
a.tabactive_80{
float:left;
background-image:url(images/tab_active_80.gif);
width:80px;
height:20px;
text-align:center;
padding-top:4px;
color:#EFEFEF;
text-decoration:none;
}
a.tabinactive_80{
float:left;
background-image:url(images/tab_inactive_80.gif);
width:80px;
height:20px;
text-align:center;
padding-top:4px;
color:#87A2B2;
text-decoration:none;
}
a.tabactive_100{
float:left;
background-image:url(images/tab_active_100.gif);
width:100px;
height:20px;
text-align:center;
padding-top:4px;
color:#EFEFEF;
text-decoration:none;
}
a.tabinactive_100{
float:left;
background-image:url(images/tab_inactive_100.gif);
width:100px;
height:20px;
text-align:center;
padding-top:4px;
color:#87A2B2;
text-decoration:none;
}
.leftmenu{
width:150px;
color:#87A2B2;
text-decoration:none;
padding:2px;
border: 1px solid #506F83;
background-color:#3E5F74;
margin-bottom:2px;
cursor:default;
}
.leftmenu:hover{
background-color:#506F83;
color:#EFEFEF;
}
.inputmenu{
border: 1px solid #506F83;
background-color:#3E5F74;
color:#EFEFEF;
font-size:10px;
padding:2px;
}
</style>
</head>
<body>
<div id="content">
<div id="content2">
<div id="logotop"><img src="images/toplogo.gif" height="200" width="830"/></div>
<div style="height:10px;"></div>
<!-- top tab menu-->
<div class="tabmenu">
<a href="#" class="tabactive_80">Forside</a>
<a href="#" class="tabinactive_80">Galleri</a>
<a href="#" class="tabinactive_80">Hot or Not</a>
<a href="#" class="tabinactive_100">Diskotekter</a>
<a href="#" class="tabinactive_80">Mit CPHBN</a>
<a href="#" class="tabinactive_80">Profiler</a>
<a href="#" class="tabinactive_100">Diskotekter</a>
<a href="#" class="tabinactive_80">Post</a>
</div>
<!-- /top tab menu-->
<!-- main -->
<div id="contentCol">
<%if s = "" then%>
<!--#include file="start.asp" -->
<%elseif s = "AddBasket" then%>
<%else
Response.Redirect "default.asp?S=Error&ID=404"
end if %>
</div>
<!-- /main -->
</div>
<div id="clearer"> </div>
</div>
<div id="contentbottom"></div>
</body>
</html>
