tijian_tieying/web/Web/Main/article.aspx

28 lines
875 B
Plaintext
Raw Normal View History

2025-02-20 12:14:39 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="article.aspx.cs" Inherits="Main_article" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style>
body {
background-image: url(../images/articlebg.jpg);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
padding: 10px 200px;
}
</style>
</head>
<body>
<h2 style="text-align: center"><%=title %></h2>
<div style="text-align: right">发布者:<%=author %> &nbsp;&nbsp;&nbsp;&nbsp;观看次数:<%=hits %> &nbsp;&nbsp;&nbsp;&nbsp;<%=updatetime %></div>
<div>
<%=content %>
</div>
</body>
</html>