-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexplain.aspx
More file actions
63 lines (46 loc) · 1.8 KB
/
explain.aspx
File metadata and controls
63 lines (46 loc) · 1.8 KB
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
57
58
59
60
61
62
63
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="explain.aspx.cs" Inherits="explain" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel="stylesheet" href="shalom/css/style.css" />
</head>
<body>
<div id="page-wrapper">
<!-- Content-Wrapper -->
<div id="content-wrapper" class="clearfix">
<div id="header">
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<div id="left">
<h2><%# Eval("Heading") %></h2>
<h4><%# Eval("Newsdate") %> <a href="#"></a></h4>
<p><span class="initial"></span><span class="meta">Posted in the Category: <a href="#">Webdesign</a>, <a href="#">Graphicdesign</a>, <a href="#">Webdevelopment</a><br />
<br />
<a href="#">423 Comments</a><br />
Readed: 1215<br />
Today: 532</span><%# System.IO.File.ReadAllText(Eval("Descriptio").ToString()) %> </p>
<p>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# "~/Data/Images/"+ System.IO.Path.GetFileName(Eval("Images").ToString())%>' Height="200px" Width="520px"/>
</p>
<blockquote> <%# Eval("Subheading") %> </blockquote>
<p> </p>
<p> <a href="blog.html">Write a Comment</a> (423 existing) → </p>
</div>
</ItemTemplate>
</asp:Repeater>
<div id="right">
<h2>The Editor</h2>
<asp:Repeater ID="Repeater2" runat="server">
<ItemTemplate>
<h3><%# Eval("edi") %></h3>
<%-- <p> <%# System.IO.File.ReadAllText(Eval("desc").ToString()) %> <br />--%>
<a href="#">read more about me</a> → </p>
</ItemTemplate>
</asp:Repeater>
</div>
</div>
</div>
</div>
</body>
</html>