10 2004 档案
摘要:看了一下反射机制,觉得就是动态的DLL装载嘛 Assembly LoginFile = Assembly.LoadFile(page.Request.PhysicalApplicationPath + ConfigurationSettings.AppSettings["LoginPath"]); Type LoginDll = LoginFile.GetType(Configuratio...
阅读全文
摘要:string temp1 = temp.Replace("\r\n","\\n"); jsript = ""; Page.RegisterClientScriptBlock("select",jsript);
阅读全文
摘要:浪费了我一个早上时间,转换字符串到ANSI码,这里记录一下,以后不用再试了.其中包括了中文及回车换行等 string temp = “字符串“ string jsript; int num; char tempchar; for(int i=0;i<temp.Length;i++) { tempchar = Convert.ToChar(temp.Sub...
阅读全文
摘要:这里我用的是ORACLE9I, 建立了表C_EMP1_T,结构如下:create table C_EMP1_T( EMP_ID NUMBER(20) not null, //用户ID EMP_NO VARCHAR2(20), //用户编号 EMP_DESC LONG, //用户简历 ...
阅读全文
摘要:例子: Byte d=0x34; //NumberFormatInfo f = new NumberFormatInfo(); TEXTBOX1.Text = d.ToString("X"); //显示34 d = Convert.ToByte("0x"+TEXTBOX1.TEXT,16); TEXTBOX2.Text = d.ToString(); /...
阅读全文
摘要:阅读了《UML建模工具比较》(来自:UmlChina 作者:Jie Zhao, Dunstan Thomas Consulting 著,ludingping [2004/09/23]), 它将比较两款CASE工具的UML建模能力、双向工程特性和项目生命周期支持:Sparx Systems的Enterprise Architect(EA)专业版V.3.51和IBM Rational的...
阅读全文