-
Notifications
You must be signed in to change notification settings - Fork 0
/
NewsDetail.aspx
56 lines (51 loc) · 1.45 KB
/
NewsDetail.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="NewsDetail.aspx.cs" Inherits="WebApplication1.NewsDetail" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<style>
#form1 {
margin: 10px 150px;
}
#Title {
font-size: 40px;
color: white;
text-align: center;
display: block;
}
#Image {
display: block;
width: auto;
height: 300px;
text-align: center;
margin-left: auto;
margin-right: auto;
}
#titleback {
background-color: #5D7B9D;
height: 40px;
}
</style>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Category" runat="server" Text="Label"></asp:Label>
<br />
<br />
<div id="titleback">
<asp:Label ID="Title" runat="server" Text="Label"></asp:Label>
</div>
<br />
<br />
<asp:Image ID="Image" runat="server" />
<br />
<br />
<asp:Label ID="PubDate" runat="server" Text="Label"></asp:Label>
<br />
<br />
<asp:Label ID="Description" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>