静态页面统计

原创 静态页面浏览数统计 for asp.net收藏

1在静态页面加入 <script src="../user/count.aspx?id=6"></script>  
<DIV id=ny_detailmain_tit02><FONT color=#00000>作者:</FONT>杨彩 <FONT color=#00000>出处:</FONT> <FONT color=#00000>时间:</FONT>  <FONT color=#00000>阅读次数:<script src="../user/count.aspx?id=6"></script></FONT>
 
</DIV>

2.建立.net页面 count.aspx   首先把count.aspx页面里面的代码除第一行 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="count.aspx.cs" Inherits="user_count" %> 外,其它全部都删掉

count.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="count.aspx.cs" Inherits="user_count" %>

 

count.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class user_count : System.Web.UI.Page
{
    
protected void Page_Load(object sender, EventArgs e)
    {
        
string id = Request.QueryString["id"];
        
if (id != null)
        {
            DB manager 
= new DB();
            
string num = manager.oneNumber("select aReadTime from article where aID=" + id);  //读阅读数
            manager.insertdata("update article set aReadTime=aReadTime+1 where aID=" + id);   //阅读数加1
            manager.close();
            Response.Write(
"document.write('" + num + "');");
        }
        
else
        {
            Response.Write(
"document.write('null');");
        }

        
    }
}
posted @ 2009-03-10 22:32  Jason.Bird  阅读(419)  评论(0编辑  收藏  举报