判断是不是数字
摘要:public static bool IsNum(String str){for(int i=0;i<str.Length;i++){if(str[i]<'0' || str[i]>'9')return false;}return true;}
阅读全文
posted @
2009-07-30 11:39
jameshappy
阅读(268)
推荐(0)
递归生成数CreateTree()
摘要:using Microsoft.Web.UI.WebControls;private void CreateTree(){try{TableRow tr = new TableRow() ;TableCell tc = new TableCell() ;System.Web.UI.HtmlControls.HtmlGenericControl div = new HtmlGenericContro...
阅读全文
posted @
2009-07-30 10:33
jameshappy
阅读(508)
推荐(0)
Oracle创建包、存储过程,及C#中调用
摘要:create or replace package body PK_DataTransfer is-- 积分卡合并 2009-7-14 procedure p_MemberMergence(s_SMemberID in nvarchar2,s_TMemberID in nvarchar2,n_Usersn in number) is begin update plus.tsell s set s...
阅读全文
posted @
2009-07-30 10:22
jameshappy
阅读(917)
推荐(0)