博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery.cookie.js结合asp.net实现最近浏览记录
阅读量:5929 次
发布时间:2019-06-19

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

一、html代码

最近浏览记录

    asp.net处理代码

    private void get_history_log(HttpContext context)        {            string id = DTRequest.GetFormString("id_arr");            DataTable dt = new BLL.article().Getdata_List("housing", 5, "id in(" + id + ")", "sort_id asc").Tables[0];            var list = new List();            for (int i = 0; i < dt.Rows.Count; i++)            {                DataRow dr = dt.Rows[i];                list.Add(new { id = dr["id"], title = dr["title"], price = dr["price"] });            }            context.Response.Write(new JavaScriptSerializer().Serialize(list));            return;        }

     

    转载地址:http://fnktx.baihongyu.com/

    你可能感兴趣的文章
    White spaces are required between publicId and sys
    查看>>
    Ubuntu安装Curl的方法
    查看>>
    关于理解数组与指针
    查看>>
    cat
    查看>>
    java--上传图片添加水印
    查看>>
    Android 自己总结的工具类 BitmapUtil
    查看>>
    Static、const、extern区别
    查看>>
    进程的基础内容
    查看>>
    html中文本域选中后会出现蓝边框
    查看>>
    shell两个整数的判断大小 思想版
    查看>>
    分析y一款APP
    查看>>
    NFS配置选项
    查看>>
    nfs配置(下),ftp介绍以及使用vsftpd搭建ftp服务
    查看>>
    新型远控***tRat已在多起垃圾电子邮件活动中出现
    查看>>
    TrickBot银行***窃取Windows问题历史记录
    查看>>
    提高Java的伸缩性 JVM性能优化
    查看>>
    U盘安装Centos7.1操作系统的问题记录
    查看>>
    DBMS_STATS.GATHER_TABLE_STATS详解
    查看>>
    我的友情链接
    查看>>
    Node.js: 编写web程序时文件改动后自动重启server
    查看>>