摘要:
斑马打印机客户端GET和POST,以及后端两种打印方式。 背景环境:打印机安装在客户端外网。当用户登录时,通过ajax取服务器数据,返回打印机命令,然后客户端通过JS发送给斑马打印机。 1、使用Get方式打印 1.1 前端页面js代码 jQuery(function () { $("#btnRePr 阅读全文
摘要:
<script type="text/javascript"> function printZpl(zpl) {var printWindow = window.open();printWindow.document.open('text/plain')printWindow.document.wr 阅读全文
摘要:
//遍历table var tableObj = document.getElementById("tableName");var str = "";for(var i=0;i<tableObj.rows.length;i++){ for(varj=0;j<tableObj.rows[i].cell 阅读全文
摘要:
<html lang="zh-ch"><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-wid 阅读全文
摘要:
两个主要方法 /// <summary>/// 用途:/// 用源表和目标表比较,返回差异的数据(目标表为参照物)/// /// 逻辑:/// 1、合并两个表/// 2、循环合并后得到的表,判断是否在目标表中存在,如果不存在,则是新增的,RowState为设置为ADD,如果存在,RowState设置 阅读全文
摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 // // Microsoft Data Access Application Block 阅读全文
摘要:
SQL Server 2005 新增 cross apply 和 outer apply 联接语句,增加这两个东东有啥作用呢? 我们知道有个 SQL Server 2000 中有个 cross join 是用于交叉联接的。实际上增加 cross apply 和 outer apply 是用于交叉联接 阅读全文
摘要:
1、装完读取插件才可以对EXCEL读取 Excel 2010 读取数据插件 https://www.microsoft.com/zh-CN/download/details.aspx?id=13255 2、ExcelHelper,需要引用Excel COM组件 using System;using 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web; using System.Text;using System.IO;using System.Drawing;using System. 阅读全文
摘要:
-- 全数据库索引重建 DECLARE @name varchar(100)DECLARE authors_cursor CURSOR FOR Select [name] from sysobjects where xtype='u' order by idOPEN authors_cursorFE 阅读全文