<%@ language=VBscript%>
<!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" dir="rtl">
<head>
<meta name="robots" content="index"/>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255" />
<meta http-equiv="Content-Language" content="he" />
<link href="blog.css" rel="stylesheet" type="text/css" />
</head>
<body>
<%
dim conn
set conn = server.createObject("ADODB.connection")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("data\myblog.mdb")
dim blog_id
blog_id=Request.queryString("blog_id")
dim rs, sql
set rs=server.createObject("ADODB.recordset")
sql="select * from blog where blog_id=" &blog_id
rs.open sql, conn
date_blog = rs("date")
date_h = rs("date_h")
type_name = rs("type_name")
title_blog = rs("title")
body_blog = rs("body")
rs.close
set rs = nothing
conn.close
set conn = nothing
%>
<div id="header"> </div>
<div id="container">
<div id="menu">
<p> </p>
<!-- #include file = "blog_menu.asp" -->
<p></p>
</div>
<div id="main-content">
<div id="content-wrap">
<h1><%=title_blog%></h1>
<p><h5>המחברת > <%=type_name%> > <%=date_h%></h5></p>
<p><h2><%=body_blog%></h2></p>
</div>
<div id="footer">
<p>נוצר ע"י <a href="<A href="mailto:eliram.net@gmail.com">אלירם">mailto:eliram.net@gmail.com">אלירם אלגרבלי
</a>בתאריך <%=date_blog%> . הזכויות שמורות.</p>
</div>
</div>
<div id="sub-container">
<div id="work-preview">
<h6 class="fav"></h6>
<b><!-- #include file = "blogfavorites.asp" --></b>
</div>
<div id="linkage">
<h6 class="dwdailies"></h6>
<!-- #include file = "bloglinks.asp" -->
</div>
</div>
</body>
</html>