摘要: 看了一下反射机制,觉得就是动态的DLL装载嘛 Assembly LoginFile = Assembly.LoadFile(page.Request.PhysicalApplicationPath + ConfigurationSettings.AppSettings["LoginPath"]); Type LoginDll = LoginFile.GetType(Configuratio... 阅读全文
posted @ 2004-10-21 15:37 Enli 阅读(685) 评论(2) 推荐(0) 编辑
摘要: string temp1 = temp.Replace("\r\n","\\n"); jsript = ""; Page.RegisterClientScriptBlock("select",jsript); 阅读全文
posted @ 2004-10-21 11:41 Enli 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 浪费了我一个早上时间,转换字符串到ANSI码,这里记录一下,以后不用再试了.其中包括了中文及回车换行等 string temp = “字符串“ string jsript; int num; char tempchar; for(int i=0;i<temp.Length;i++) { tempchar = Convert.ToChar(temp.Sub... 阅读全文
posted @ 2004-10-21 11:03 Enli 阅读(1124) 评论(0) 推荐(0) 编辑