TAG:
软件分享
用平台:ColdFusion MX 7
打开码 ColdFusion MX Administrator,选择码 SYSTEM INFORMATION 页。
点 Browse Server按钮选择已经下载的补丁包,点 Apply按钮
得到提示:Server has been updated successfully后,重启ColdFusion MX 7即可。
注意:如果你的浏览器没有正确的java虚拟机运行环境,可能ColdFusion MX Administrator无法正常使用,
如有需要,请下载给浏览器使用的java虚拟机
官方更新日2005-8-11
下载:本站下载
下载:四方博客下载
TAG:
软件分享
Macromedia ColdFusion MX 7 的推出是 ColdFusion 出现十年来最重要的版本。ColdFusion MX 7 仍然是创建和部署功能强大的网络应用程序的最快方法,ColdFusion MX 7新的集成报表功能来解决结构化业务报表问题。 ColdFusion MX 7 使用单个标签将 Web 内容动态转化为 PDF 或 FlashPaper 格式的高质量可打印、可移植文档。快来体验ColdFusion MX 7企业版更为强大的功能,只需使用若干 ColdFusion 标签,即可在几分钟内创建出丰富 Flash 表单,使用 Flash 和 ColdFusion 构建 Rich Internet Application。ColdFusion MX 7 是我对该软件的所有期望的顶峰。使用 ColdFusion MX 7,我们能够在更短的时间内完成更多的工作,ColdFusion MX 7向用户提供远较其它解决方案为好的体验。ColdFusion MX 7 产品线可供购买的版本有两种 - Standard 版或 Enterprise 版 - 包括运行 ColdFusion 应用程序需要整个基础架构。而这个是Enterprise 版。如您所见,ColdFusion MX 7 具有强大的新型应用服务,使其成为问世 10 年来最具实力的版本。内含注册机
安装文件解压密码 www.4fong.com
下载:四方博客下载 ColdFusion
文章来源:http://www.4fong.com/download.html
TAG:
CSS 代码分享
html, address,
blockquote,
body, dd, div,
dl, dt, fieldset, form,
frame, frameset,
h1, h2, h3, h4,
h5, h6, noframes,
ol, p, ul, center,
dir, hr, menu, pre { display: block }
li { display: list-item }
head { display: none }
table { display: table }
tr { display: table-row }
thead { display: table-header-group }
tbody { display: table-row-group }
tfoot { display: table-footer-group }
col { display: table-column }
colgroup { display: table-column-group }
td, th { display: table-cell; }
caption { display: table-caption }
th { font-weight: bolder; text-align: center }
caption { text-align: center }
body { margin: 8px; line-height: 1.12 }
h1 { font-size: 2em; margin: .67em 0 }
h2 { font-size: 1.5em; margin: .75em 0 }
h3 { font-size: 1.17em; margin: .83em 0 }
h4, p,
blockquote, ul,
fieldset, form,
ol, dl, dir,
menu { margin: 1.12em 0 }
h5 { font-size: .83em; margin: 1.5em 0 }
h6 { font-size: .75em; margin: 1.67em 0 }
h1, h2, h3, h4,
h5, h6, b,
strong { font-weight: bolder }
blockquote { margin-left: 40px; margin-right: 40px }
i, cite, em,
var, address { font-style: italic }
pre, tt, code,
kbd, samp { font-family: monospace }
pre { white-space: pre }
button, textarea,
input, object,
select { display:inline-block; }
big { font-size: 1.17em }
small, sub, sup { font-size: .83em }
sub { vertical-align: sub }
sup { vertical-align: super }
table { border-spacing: 2px; }
thead, tbody,
tfoot { vertical-align: middle }
td, th { vertical-align: inherit }
s, strike, del { text-decoration: line-through }
hr { border: 1px inset }
ol, ul, dir,
menu, dd { margin-left: 40px }
ol { list-style-type: decimal }
ol ul, ul ol,
ul ul, ol ol { margin-top: 0; margin-bottom: 0 }
u, ins { text-decoration: underline }
br:before { content: "\A" }
:before, :after { white-space: pre-line }
center { text-align: center }
abbr, acronym { font-variant: small-caps; letter-spacing: 0.1em }
:link, :visited { text-decoration: underline }
:focus { outline: thin dotted invert }
/* Begin bidirectionality settings (do not change) */
BDO[DIR="ltr"] { direction: ltr; unicode-bidi: bidi-override }
BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override }
*[DIR="ltr"] { direction: ltr; unicode-bidi: embed }
*[DIR="rtl"] { direction: rtl; unicode-bidi: embed }@media print {
h1 { page-break-before: always }
h1, h2, h3,
h4, h5, h6 { page-break-after: avoid }
ul, ol, dl { page-break-before: avoid }
}
TAG:
文章分享 HTML
今天在蓝色理想看到篇《所有链接都设成_blank简单方法》,里面提到了一个<base>标签,于是找了一个资料,发现还蛮好用的,记下。
base标记是一个基链接标记,是一个单标记。用以改变文件中所有连结标记的参数内定值。它只能应用于标记<head>与</head>之间。
你网页上的所有相对路径在链接时都将在前面加上基链接指向的地址。
重要属性:
href
设定前缀的链接地址
target
设定文件显示的窗口,同a标记中的target
简单例子:
-------------------------------------------
<html>
<head>
<base href="http://www.baidu.com" target="_blank">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>base标记</title>
<link rel="Shortcut Icon" href="ani.CUR">
</head>
<body>
<a href="77.htm" target="_self">77</a>
<a href="88.htm">88</a>
</body>
</html>
-------------------------------------------
当点了链接后,跳出的文件是http://www.baidu.com/77.htm或http://www.baidu.com/88.htm,它就是在这些相对路径的文件前加上基链接指向的地址。如果目标文件中的链接没有指定target属性,就用base标记中的target属性。
常在框架结构中用,如左右两个框架,把左边的框架中文件里的连接都显示在右边的框架里。只要用base标记,把其target属性值写为右框架名称,这就不用再为左框架里的文件中的每一个连接都指定target属性。
当使用时,BASE 元素必须出现在文档的HEAD 内,在任何对外部源的引用之前。
此元素在 Microsoft® Internet Explorer 3.0 的 HTML 中可用,在 Internet Explorer 4.0 的脚本中可用。
此元素不会被渲染。
此元素不需要关闭标签。