摘要: http://labs.developerfusion.co.uk/convert/vb-to-csharp.asp 阅读全文
posted @ 2007-08-21 14:54 ipusr 阅读(235) 评论(0) 推荐(0) 编辑
摘要: vb: CType(obj,TextBox) CType(Sender,Control) 例如 : Dim tb1 As TextBox = CType(e.Item.Cells(1).Controls(1), TextBox) c#: (TextBox)obj 例如 : TextBox tb = (TextBox) e.Item.Cells[2].... 阅读全文
posted @ 2007-08-21 13:44 ipusr 阅读(9990) 评论(0) 推荐(0) 编辑
摘要: 数据库表结构为: 表名:treeTable 字段:L_ID:主键ID L_Name:树中显示的菜单名 P_L_ID:属于某个菜单 L_Page:导向路径 L_PageName:文件名 示例数据: L_ID L_Name ... 阅读全文
posted @ 2007-08-21 09:55 ipusr 阅读(391) 评论(0) 推荐(0) 编辑