新闻添加点击量

原理很简单,首先设置点击量的字段为0,就是在添加新闻的时候,设置float字段,初始值为0,
然后再前台,每条新闻加一个点击事件
//点击次数
function clicknum(obj) {
$.ajax({
type: "post",
url: "restNew.ashx",
dataType: "text",
data: "our=clicknum&news_Id=" + obj,
error: function () {
alert("服务器繁忙,请稍候在试");
}
})
}
然后把后台的字段,加1
if (our == "点击量")
{
if (sqlhelper.PublicUpdate("information_Clickamount=information_Clickamount+1", "information_Id="+information_Id, "tb_information") > 0)
{
context.Response.Write("OK");
}
}

你可能感兴趣的:(新闻添加点击量)