-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.aspx
23 lines (23 loc) · 1.01 KB
/
sitemap.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="sitemap.aspx.cs" Inherits="Avalon.Web._sitmap" %>
<% Response.ContentType = "text/xml";%><?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.google.com/schemas/sitemap/0.84"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84
http://www.google.com/schemas/sitemap/0.84/sitemap.xsd">
<url>
<loc>http://woooh.com/</loc>
<changefreq>hourly</changefreq>
<priority>0.8</priority>
</url>
<asp:Repeater id="monthList" runat="server"><ItemTemplate><url>
<loc>http://woooh.com/<%# DataBinder.Eval(Container.DataItem,"Month","{0:yyyy\\/MM}") %></loc>
<changefreq>never</changefreq>
</url>
</ItemTemplate></asp:Repeater>
<asp:Repeater id="clipList" runat="server"><ItemTemplate><url>
<loc>http://woooh.com/<%# DataBinder.Eval(Container.DataItem,"PostTime","{0:yyyy\\/MM\\/dd}") %></loc>
<changefreq>never</changefreq>
</url>
</ItemTemplate></asp:Repeater>
</urlset>