摘要:
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;} 阅读全文
摘要:
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... 阅读全文
摘要:
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... 阅读全文