05 2012 档案

摘要:View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace common{ public static class Spell { #region 编码定义,不支持全角字符 private static int[] pyvalue = new int[] { -20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -... 阅读全文
posted @ 2012-05-18 15:52 易水寒2012 阅读(1370) 评论(1) 推荐(1)
摘要:/// <summary> /// 当焦点离开时,验证是否保留了两位小数,如不是自动更正 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void txtUnitPrice_Leave(object sender, EventArgs e) { string content = txtUnitPrice.Text; string[] str = ... 阅读全文
posted @ 2012-05-09 00:12 易水寒2012 阅读(288) 评论(0) 推荐(0)
摘要:1、sql语句中 insert into tableName() output inserted.id values() 2 、存储过程中 ALTER PROCEDURE dbo.getBuyMedicID ( @id int output, @AllsumMoney money ) AS begin INSERT INTO t_buyMedic(sumMoney,buyDate) VALUES(@AllsumMoney,getdate()) select @id=@@identity... 阅读全文
posted @ 2012-05-05 16:08 易水寒2012 阅读(2161) 评论(0) 推荐(0)