10 2010 档案

摘要:1.desc 表名 :显示数据表的结构2.as 省略了as 比如 mssql中的select name as 姓名 在oracle中 改为 select name 姓名3.增加了 any, some 的嵌套查询功能 两个参数作用一样 例子如下select name form class.emp where number>any(select number form student.emp w... 阅读全文
posted @ 2010-10-23 10:43 DODUI 阅读(982) 评论(0) 推荐(0)
摘要:http://download.csdn.net/source/1690367 阅读全文
posted @ 2010-10-20 10:03 DODUI 阅读(146) 评论(0) 推荐(0)
摘要:一、使用方法:1、在页面中引入ckeditor核心文件ckeditor.js2、在使用编辑器的地方插入HTML控件如果是ASP.NET环境,也可用服务器端控件3、将相应的控件替换成编辑器代码4、配置编辑器(这些配置默认也是没关系的) ckeditor的配置都集中在 ckeditor/config.js 文件中,下面是一些常用的配置参数:// 界面语言,默认为 'en' config.language = 'zh-cn';// 设置宽高 config.width = 400; config.height = 400;// 编辑器样式,有三种:'kama&# 阅读全文
posted @ 2010-10-15 10:15 DODUI 阅读(675) 评论(1) 推荐(0)
摘要:哎,编程一接触就开始接触的是sql2005,这个时候却要用sql2000,进行开发。听说有的地方还是有区别的先熟悉熟悉一下工具吧。 阅读全文
posted @ 2010-10-14 17:36 DODUI 阅读(158) 评论(0) 推荐(0)
摘要:publicstaticDataTableGetIndex(stringkey){if(System.Web.HttpContext.Current.Cache[key]!=null){return(DataTable)System.Web.HttpContext.Current.Cache[key];}else{//读取数据内容System.Web.HttpContext.Current.Cache.Add("唯一值","数据内容""依赖项","以创建的时候开始计算","创建后多少时间清除", 阅读全文
posted @ 2010-10-14 16:21 DODUI 阅读(271) 评论(0) 推荐(0)
摘要:[代码] 阅读全文
posted @ 2010-10-14 15:08 DODUI 阅读(224) 评论(0) 推荐(0)
摘要:C:\WINDOWS\system32\drivers\etc\hosts 记事本修改就行了 Saburo 15:33:35 。恩。谢谢,文哥哈,只能弄成80端口的才行 文哥(风讯) 15:34:30 如果你不弄成80端口 ,那么你就只有用pengtao.com:123来访问 # Copyright (c) 1993-2009 Microsoft Corp.## This is a sample HOSTS file used by Microsoft TCP/IP for Windows.## This file contains the mappings of IP addresses t 阅读全文
posted @ 2010-10-11 14:52 DODUI 阅读(996) 评论(0) 推荐(0)
摘要:如果tid是自动增长的列的话要改成StrSql = "select * from newsinfo where tid= " & tid 阅读全文
posted @ 2010-10-10 16:58 DODUI 阅读(154) 评论(0) 推荐(0)
摘要:1:在桌面=>>我的电脑=>>右键=>>管理...=>>服务和应用程序=>>服务在右边的窗口里找到 Server 这个服务在 Server 上点右键=>>属性把启动类型改为自动,再点下面的启动按钮再点确定OK 2:控制面板——管理工具——服务找到Server这个服务,启动,并设置... 阅读全文
posted @ 2010-10-09 15:43 DODUI 阅读(148) 评论(0) 推荐(0)
摘要:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->//备份数据库publicvoidbeifen(){stringpath=HttpContext.Current.Server.MapPath("App_Data/sqltest1.bak");stringbackupstr="backupdatabaseCompanyDBtodisk='"+path+"';";Sq 阅读全文
posted @ 2010-10-08 13:18 DODUI 阅读(185) 评论(0) 推荐(0)