摘要: use test002go--判断是否存在表和默认值对象 如果存在删除if object_id('table_6_4') is not null drop table table_6_4if object_id('abc_const') is not null drop default abc_const go--创建表create table table_6_4( keycol int primary key,process_id smallint default @@spid,date_ins datetime default getdate(),mathc 阅读全文
posted @ 2012-01-09 15:38 superkook 阅读(196) 评论(0) 推荐(0)
摘要: 7.1有序列表PhotoshopIllustratorFreedhandcorelDraw7.2无序列表PhotoshopIllustratorFreedhandcorelDraw7.3目录列表PhotoshopIllustratorFreedhandcorelDraw7.4定义列表Photoshopadobe公司图像处理软件Illustratoradobe公司图像处理软件Freedhandmacromdia公司图像处理软件corelDrawcorel公司图像处理软件7.5菜单列表PhotoshopIllustratorFreedhandcorelDraw 阅读全文
posted @ 2012-01-08 21:44 superkook 阅读(152) 评论(0) 推荐(0)
摘要: <body>属性text 设定文字颜色bgcolor 设定背景颜色background 设定背景图像bgproperties 设定背景图像为固定不随页面的滚动而滚动link 设定页面默认的连接颜色alink 设定鼠标正在单击时的连接颜色vlink 设定访问后的连接颜色topmargin 设定页面上边距leftmargin 设定页面的左边距 阅读全文
posted @ 2012-01-08 15:24 superkook 阅读(317) 评论(0) 推荐(0)
摘要: use test002go--1.查找并删除已经存在的数据if object_id('table_6_2','U') is not null drop table table_6_2go--2.创建数据表并插入数据create table table_6_2(id_num int identity(1,1),company_name sysname)insert table_6_2(company_name)values('test_1')insert table_6_2(company_name)values('test_2') 阅读全文
posted @ 2012-01-07 17:35 superkook 阅读(241) 评论(0) 推荐(0)
摘要: 1.注释语句 <comment><!-- -->2.标题字标记<h>3.粗体标记<b>,<strong>4.斜体标记<i>,<em>,<cite>5.上标标记<sup>6.下标标记<sub>7.大字号标记<big>8.小字号标记<small>9.下划线标记<u>10.删除线标记<s>,<strike>11.地址标记<address>12.打字机标记<tt>13.等宽文字标记<code&g 阅读全文
posted @ 2011-12-04 22:22 superkook 阅读(164) 评论(0) 推荐(0)
摘要: 1、html头部标记<base>:当前文档的URL全称(基底地址)<basefont>:设定基准的文字字体、字号和颜色<title>:网页标题<isindex>:表明文档是一个可用于检索的网管脚本,有服务器自动建立<meta>:有关文档本身的元信息,例如用于查询的关键词,用于获取该文档的有效期等<style>:设定CSS层叠样式<link>:设定外部文件连接<script>:设定页面中脚本的内容2.meta简介属性:http-equiv:生成一个http标题域,他的取值与另一个属性相同name:如果 阅读全文
posted @ 2011-12-04 21:59 superkook 阅读(196) 评论(0) 推荐(0)