1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="article-index.aspx.cs" Inherits="CB.Wap.column.article_index" %>
- <%@ Register src="/header.ascx" tagname="header" tagprefix="uc1" %>
- <%@ Register src="/footer.ascx" tagname="footer" TagPrefix="uc2" %>
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=no" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <meta name="format-detection" content="telephone=no" />
- <meta name="MobileOptimized" content="320" />
- <meta name="screen-orientation" content="portrait" />
- <meta http-equiv="cleartype" content="on" />
- <meta content="telephone=no" name="format-detection" />
- <title><%=pageTitle%></title>
- <meta name="keywords" content="<%=pageKeyWords %>" />
- <meta name="description" content="<%=pageDescription %>" />
- <link href="/static/css/base.css" rel="stylesheet"/>
- <link href="/static/css/specail.css" rel="stylesheet"/>
- <script type="text/javascript" src="/static/js/1.6-min-jquery.js"></script>
- <script type="text/javascript" src="/static/js/wap128.js"></script>
- </head>
- <body>
- <uc1:header ID="header1" runat="server" />
- <div class="wrap">
- <div class="subnav">
- <%=columnNav%>
- </div>
- </div>
- <div class="column-title">
- <h1><span></span><%=columnName%></h1>
- </div>
- <div class="news-list" id="articleList">
- <%=sp.ToString() %>
- </div>
- <div id="footer" class="load"> <a id="articleMore">加载更多<span></span></a> </div>
- <script type="text/javascript">
- (function (config) {
- var _pageIndex = 2;
- var _box = $(config.boxId);
- $(config.btnId).click(function () {
- var url = config.url.replace("[@page]", _pageIndex);
- $.ajax({
- type: "GET",
- url: url,
- dataType: "html",
- cache: false,
- success: function (html) {
- _box.append(html);
- }
- });
- _pageIndex++; return false;
- });
- })({ boxId: "#articleList", btnId: "#articleMore", url: "<%=moreUrl %>" });
- </script>
- <uc2:footer ID="footer1" runat="server" NoFooter="false" />
- </body>
- </html>
|