-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.aspx
34 lines (32 loc) · 1.52 KB
/
rss.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
<%@ Page Language="C#" CodeFile="rss.aspx.cs" Inherits="Avalon.Web._rss" %>
<% Response.ContentType = "text/xml";%><?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<channel>
<title>Aether - ÔÚÊÀ¼´ÊÇÀíÏëÏç</title>
<link>http://woooh.com/</link>
<description>what you remember happened in the past, and only what you believe might happen in the future. free your mind.</description>
<generator>http://code.google.com/p/blogif/</generator>
<language>zh-cn</language>
<asp:Repeater id="clipList" OnItemDataBound="clipList_ItemDataBound" runat="server"><ItemTemplate><item>
<title><%# DataBinder.Eval(Container.DataItem,"PostTime","{0:D}") %></title>
<link>http://woooh.com/<%# DataBinder.Eval(Container.DataItem,"PostTime","{0:yyyy\\/MM\\/dd}") %></link>
<pubDate><%# DataBinder.Eval(Container.DataItem,"PostTime","{0:r}") %></pubDate>
<guid isPermaLink="true">http://woooh.com/<%# DataBinder.Eval(Container.DataItem,"PostTime","{0:yyyy\\/MM\\/dd}") %></guid>
<content:encoded>
<![CDATA[
<asp:Repeater id="clipInDay" runat="server"><ItemTemplate>
<h5><%# DataBinder.Eval(Container.DataItem,"PostTime","{0:HH:mm:ss}") %> <%# Eval("SourceDoing") %> £º</h5>
<p>
<%# Eval("Content") %>
</p>
</ItemTemplate></asp:Repeater>
]]>
</content:encoded>
</item>
</ItemTemplate></asp:Repeater>
</channel>
</rss>