上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Reflection; using System.Text; using Syste 阅读全文
posted @ 2019-12-05 15:18 零一の世界 阅读(23) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.OleDb; usin 阅读全文
posted @ 2019-12-05 15:16 零一の世界 阅读(26) 评论(0) 推荐(0) 编辑
摘要: USE [BLTLNew] GO /****** Object: StoredProcedure [dbo].[usp_DataPager] Script Date: 2019-12-05 14:51:12 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTI 阅读全文
posted @ 2019-12-05 14:52 零一の世界 阅读(22) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> function UrlSearch() { var name, value; var str = location.href; //取得整个地址栏 var num = str.indexOf("?") str = str.substr 阅读全文
posted @ 2019-12-05 10:01 零一の世界 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Brendan(布兰登) Eich 轻量级的编程语言(ECMAscript5或6), 是一种解释性脚本语言(代码不进行预编译), 主要用来向HTML页面添加交互行为, 目前是互联网上最流行的脚本语言, 支持面向对象、命令式和声明式(如函数式编程)风格, JavaScript,他和Python一样是一 阅读全文
posted @ 2019-12-05 09:52 零一の世界 阅读(89) 评论(0) 推荐(0) 编辑
摘要: asp.net 根据html模板导出excel public class ExcelHelper { /// <summary> /// 根据html模板文件生成excel文件 /// </summary> /// <param name="ds">数据源</param> /// <param na 阅读全文
posted @ 2019-12-05 09:49 零一の世界 阅读(13) 评论(0) 推荐(0) 编辑
摘要: asp.net 使用NPOI读取excel文件内容 NPOI下载地址:NPOI public class ExcelHelper { /// <summary> /// 读取Excel文件数据到DataSet,一个Sheet对应一个DataTable /// </summary> /// <para 阅读全文
posted @ 2019-12-05 09:45 零一の世界 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Asp.net 使用 Application 限制单一登录 原理:用户登录后系统会分配一个与用户唯一对应的SessionID,将当前用户ID与其SessionID对应保存在Application中,一旦该用户在其他地方重复登录则Application中保存的SessionID就会被更新,导致当前se 阅读全文
posted @ 2019-12-05 09:42 零一の世界 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 一、介绍:图片的上传直接使用ajax就可以了,截取图片的话使用到Jcrop插件。 图片上传资料:https://www.jb51.net/article/87654.htm 截取图片插件:http://code.ciaoca.com/jquery/jcrop/ 前端 添加引用 1 <script s 阅读全文
posted @ 2019-12-05 09:37 零一の世界 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1.URL地址防注入: //过滤URL非法SQL字符 var sUrl=location.search.toLowerCase(); var sQuery=sUrl.substring(sUrl.indexOf("=")+1); var re=/select|update|delete|trunca 阅读全文
posted @ 2019-12-04 15:11 零一の世界 阅读(438) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页