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');");
        }

        
    }
}

相关文章:

  • 2021-11-21
  • 2021-12-25
猜你喜欢
  • 2021-04-28
  • 2021-11-28
  • 2021-09-20
  • 2021-11-24
  • 2021-12-06
  • 2021-10-07
  • 2022-12-23
相关资源
相似解决方案