asp.net微软图表控件使用示例

<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualizati …… 阅读全文

c#中list使用示例

protected void Page_Load(object sender, EventArgs e) { List studentNames = new List(); studentNames.Add("John"); studentNames.Add("Mary"); studentNames.Add("Rose"); …… 阅读全文

使用C#系统服务定时执行操作

1.新建项目 --》 Windows 服务2.Service1.cs代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.ServiceProcess;using …… 阅读全文

C#直接发送打印机命令到打印机及ZPL常用打印命令 - 条码打印机

using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace BarCodeLibrary{ public class ZebraGesigner { [StructLayout(LayoutKi …… 阅读全文

C#打印机操作类

using System;using System.Collections.Generic;using System.Text;namespace MacPrinter{ public class ZPL_Command { /// (^EF) /// 清除设定 (已包含起始结束命令) /// …… 阅读全文

c#读写txt文件

//write txtStringBuilder builder = new StringBuilder();FileStream fs = new FileStream(saveFileName, FileMode.Create);StreamWriter sw = new StreamWriter(fs, Encoding.Default);for (int i = 0; i < ds …… 阅读全文