
Arkadaşlar İşte böyle çıkıyor

)
x.ASP'nin Kodları <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>Yeni Sayfa 1</title>
</head>
<body>
<!--#include file="menux.asp"-->
</body>
</html>
Menux.ASP'nin Kodları <!--#include file="db.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="menu_style.css">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254" />
</head>
<body>
<%
set Kat = Server.CreateObject("Adodb.Recordset")
Sql="Select * from kategori"
Kat.open Sql,baglan,1,3
%>
<div class="outer">
<div class="menu">
<%do while not kat.eof%>
<ul>
<li><a href="#"><%=Kat("Kategori")%></a></li>
</ul>
<%
Kat.Movenext
Loop
kat.close
set kat = Nothing
%>
</div>
</div>
</div>
</body>
</html>