上一页 1 ··· 25 26 27 28 29
摘要: test ffff用Ctrl+方向键可以方便的在控件中移动,也可以不要Ctrl的。 转自:http://hi.baidu.com/hyg2006/blog/item/8... 阅读全文
posted @ 2007-06-12 12:34 shiningrise 阅读(820) 评论(0) 推荐(0) 编辑
摘要: 在学习 Clingingboy 的 asp.net控件开发基础(1) 时http://www.cnblogs.com/Clingingboy/archive/2006/07/30/463471.html在使用控件时 (1).需要先注册一下 (2) 然后就使用标签输出效果 这种方法在vs2005sp1中不能正常使用,提示找不到然后我在 web.config 中 ... 阅读全文
posted @ 2007-05-29 23:51 shiningrise 阅读(320) 评论(0) 推荐(0) 编辑
摘要: MSSql的多表关联的update语句 例如A表 存在一下字段:AID A1 A2 A3 A4B表中存在字段:BID B1 B2 B3 B4如果实现用B表的所有字段更新A表中相应的字段,在MS SQL Server里面可以写成:update Aset A1=B.B1,A2=B.B2,A3=B.B3,A4=B.B4from A,Bwhere A.AID=B.BID ORACLE UPDATE ... 阅读全文
posted @ 2007-05-25 11:48 shiningrise 阅读(25301) 评论(1) 推荐(0) 编辑
摘要: 做了一个通用的Excel数据导入到GridView的类 阅读全文
posted @ 2007-05-18 13:18 shiningrise 阅读(4099) 评论(8) 推荐(0) 编辑
摘要: 步骤: 1、建立数据库(可以用任何数据库SQL SERVER,ACCESS均可) 2、建立DNS 3、安装Serv-U 4、建立域 阅读全文
posted @ 2007-05-16 11:09 shiningrise 阅读(1531) 评论(0) 推荐(0) 编辑
摘要: 1.定义一个 "代表"如: public delegate void DisconnectedEventHandler(object sender,ClientEventArgs e); 2.定义事件参数如: public class ClientEventArgs : EventArgs { public IPAddress IP { ... 阅读全文
posted @ 2007-05-13 00:09 shiningrise 阅读(1237) 评论(0) 推荐(0) 编辑
摘要: 怎样在C#里对xml文件进行修改,新增,删除,插入操作? 已知有一个XML文件(bookstore.xml)如下:Oberon's LegacyCorets, Eva5.95 1、往节点中插入一个节点: XmlDocument xmlDoc=new XmlDocument();xmlDoc.Load("bookstore.xml");XmlNode root=xmlDoc.SelectSin... 阅读全文
posted @ 2007-05-11 11:11 shiningrise 阅读(2209) 评论(1) 推荐(1) 编辑
摘要: http://www.codeproject.com/cs/internet/ChatAsynchTCPSockets.aspA Chat Application Using Asynchronous TCP Socketshttp://www.codeproject.com/cs/internet/TCPIPChat.aspTCP/IP Chat Application Using C# C#... 阅读全文
posted @ 2007-05-11 01:56 shiningrise 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 设置上次考试考生管理成绩批量录入 阅读全文
posted @ 2007-05-08 01:18 shiningrise 阅读(599) 评论(5) 推荐(0) 编辑
摘要: I have implented the IDataErrorInfo interface on the BaseEntity class. Thiis interface provides the functionality to offer custom error information that a user interface can bind to. Controls like t... 阅读全文
posted @ 2007-05-07 01:45 shiningrise 阅读(792) 评论(0) 推荐(0) 编辑
摘要: USE AdventureWorks;GOCREATE TABLE #temptable (col1 int);GOINSERT INTO #temptableVALUES (10);GOSELECT * FROM #temptable;GOIF OBJECT_ID(N'tempdb..#temptable', N'U') IS NOT NULL DROP TABLE #temptable;GO-... 阅读全文
posted @ 2007-05-06 12:42 shiningrise 阅读(979) 评论(2) 推荐(0) 编辑
摘要: 由于在设置表间关系时出错,调试了很久才搞定。 阅读全文
posted @ 2007-04-26 23:38 shiningrise 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2007-04-23 23:42 shiningrise 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 成绩管理系统中的业务主键:学校,学段,级,科类,班号由于把考试学科设置表与考试场表中的学段忘了,以致于初高中学科设置与试场设置不能区别。-----------------------------------------070421:把考试学科设置完成:新找了一个很好用的js日期时间控件:My97DatePicker2.1_有时间 作者:联系My97: ***********************... 阅读全文
posted @ 2007-04-22 23:35 shiningrise 阅读(543) 评论(0) 推荐(0) 编辑
摘要: 今天一早到单位上班时发现sqlserver无法启动TDSSNIClient 初始化失败,出现错误 0x7e,状态代码 0x60。TDSSNIClient 初始化失败,出现错误 0x7e,状态代码 0x1。由于网络库中存在内部错误,所以无法启动网络库。要确定原因,请查看错误日志中紧位于此错误之前的那些错误。SQL Server 无法生成 FRunCM 线程。请查看 SQL Server 错误日志和 ... 阅读全文
posted @ 2007-03-01 09:22 shiningrise 阅读(2094) 评论(0) 推荐(0) 编辑
摘要: insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;HDR=no;Database=D:\test.xls', [Sheet1$]) select * from logging.dbo.[log] 但test.xls和[Sheet1$]都要建好而且[Sheet1$]中要有相应的列名. 执行... 阅读全文
posted @ 2007-02-09 12:14 shiningrise 阅读(1681) 评论(2) 推荐(0) 编辑
摘要: 写入REGEDIT4 ;Generated with Registry Explorer;http://www.regxplor.com [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt] [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\加入... 阅读全文
posted @ 2007-01-14 14:30 shiningrise 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 欢迎各位光临。 阅读全文
posted @ 2007-01-11 14:35 shiningrise 阅读(209) 评论(1) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css