博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Digg 顶 踩(jQuery+Ajax)
阅读量:6005 次
发布时间:2019-06-20

本文共 2919 字,大约阅读时间需要 9 分钟。

//Default.aspx
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>    digg    
------分隔线----------------------------

 

 

//Digg.aspx

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 Digg : System.Web.UI.Page{    protected void Page_Load(object sender, EventArgs e)    {        string s = Request["id"].ToString();        int aid = int.Parse(s);        if (Request["action"] != null)          {            string action = Request["action"].ToString();            db d = new db();            if (action == "good")            {                d.excuteSQL("Update Digg set goodpost=goodpost+1,lastpost=getdate() where contentid=" + aid);            }            else if (action == "bad")            {                d.excuteSQL("Update Digg set badpost=badpost+1,lastpost=getdate() where contentid=" + aid);            }        }        string ss = getDigg(aid);        Response.Write(ss);           }    public string  getDigg(int strId)    {        int goodper;        int badper;        string digg = "";        db d = new db();        DataTable dt = d.getDT("Select goodpost,badpost  From Digg  where contentid="+strId);        foreach (DataRow dr in dt.Rows)        {            int goodposts = Convert.ToInt32(dr["goodpost"]);            int badposts = Convert.ToInt32(dr["badpost"]);            if (goodposts + badposts == 0)            {                goodper = badper = 0;            }            else            {                int alls = goodposts + badposts;                goodper = Convert.ToInt32((double)goodposts / alls * 100);                badper = 100 - goodper;            }            digg += "
"; digg += "
顶一下
"; digg += "
(" + goodposts + ")
"; digg += "
"; digg += "
"; digg += "
" + goodper + "%
"; digg += "
"; digg += "
"; digg += "
"; digg += "
踩一下
"; digg += "
(" + badposts + ")
"; digg += "
"; digg += "
"; digg += "
" + badper + "%
"; digg += "
"; digg += "
"; } return digg; }}

 

//cookie.js

//读写cookie函数function if "="if ";"if return return nullfunction var new "=" null"" ";expires="

//使设置的有效时间正确。增加toGMTString()

本文转自曾祥展博客园博客,原文链接:http://www.cnblogs.com/zengxiangzhan/archive/2009/10/12/1581788.html,如需转载请自行联系原作者

你可能感兴趣的文章
Device Tree碎碎念
查看>>
STM32F103ZET6 之 ADC+TIM+DMA+USART 综合实验
查看>>
oracle 锁系列
查看>>
HBuilder开发App教程06-首页
查看>>
深入理解JVM:HotSpot虚拟机对象探秘
查看>>
virtualbox测试k8s要注意的情况
查看>>
mac系统下为emacs设置中文字体,解决乱码问题
查看>>
K8s的内部Pod之间都不通,搞了快两天
查看>>
编写高质量代码改善C#程序的157个建议:第17个建议之多数情况下使用foreach进行循环遍历...
查看>>
如何简单的测试kubernetes的dns add-ons是否工作正常?
查看>>
android RecycleView复杂多条目的布局
查看>>
AAC帧格式及编码介绍
查看>>
HDFS怎样检測并删除多余副本块
查看>>
c++ auto 理解
查看>>
一起talk C栗子吧(第一百三十一回:C语言实例--C程序内存布局三)
查看>>
2014年半年结
查看>>
HTML5 Canvas:初始Canvas
查看>>
sublime text如何保存为uft-8无bom编码格式文件
查看>>
python爬虫高级功能
查看>>
【javascript】您好, 您要的ECMAScript6速记套餐到了 (一)
查看>>