CSS技巧 html特技 网页设计
Dreamweaver 8 for Windows loses FTP login settings
Posted in CSS&HTML&网页设计 on 2007/06/11 / 评论(0) »
关于DW8装了IE7ftp地址无法保存的一些问题的补丁终于出来了,还没来得及试先帖下来再说
原文地址:http://kb.adobe.com/selfservice/viewContent.do?externalId=3491671c&sliceId=2
原文地址:http://kb.adobe.com/selfservice/viewContent.do?externalId=3491671c&sliceId=2
Dreamweaver 8 for Windows loses FTP login settings
Issue
Some Windows users are reporting that their FTP usernames and passwords in their Dreamweaver site definitions are deleted when they close and re-open Dreamweaver 8 or when they reboot their machine. This issue does not occur in earlier versions of Dreamweaver. (Ref. 205051, 210466)
Reason
There are two known causes for this issue:
» 阅读全文
快速另存为禁止保存的页面
Posted in CSS&HTML&网页设计 on 2006/12/28 / 评论(0) »
一般地,禁止另存为的方法是:
在标记中加入
加入这样标记后,当你另存为时,会出现保存网页时出错,无法保存该网页的错误提示,解决方法是:
另将该页面的源代码另存到本地(这个应该不会有难度),编辑保存的源码,去掉上面的
其中,xxx为你要保存的页面域名,保存,打开,能看到跟原来的页面一模一样吧?好,现在可以另存了!
在标记中加入
<noscript><iframe src="*.html"></iframe></noscript>
加入这样标记后,当你另存为时,会出现保存网页时出错,无法保存该网页的错误提示,解决方法是:
另将该页面的源代码另存到本地(这个应该不会有难度),编辑保存的源码,去掉上面的
<noscript><iframe src="*.html"></iframe></noscript>语句,并在<head>
中加入<base href='xxx' />
其中,xxx为你要保存的页面域名,保存,打开,能看到跟原来的页面一模一样吧?好,现在可以另存了!
一些备忘CSS JS
Posted in CSS&HTML&网页设计 on 2006/12/15 / 评论(0) »
层高度 clientWidth
层宽度 clientHeight
层TOP坐标 offsetTop
层LEFT坐标 offsetLeft
CSS表达式 expression
DIV 不换行 nowrap
层宽度 clientHeight
层TOP坐标 offsetTop
层LEFT坐标 offsetLeft
CSS表达式 expression
DIV 不换行 nowrap
xsl 分頁
Posted in CSS&HTML&网页设计 on 2006/12/08 / 评论(0) »
分頁使用中遇到幾個問題
WD-xsl版本中和
版本中遇到的問題
wd-xsl版本支持expr 但Transform不支持此功能
Transform支持
在WD-xsl版本中 將要改爲
WD-xsl版本中和
版本中遇到的問題
wd-xsl版本支持expr 但Transform不支持此功能
Transform支持
在WD-xsl版本中 將要改爲
» 阅读全文
分页之 XML + XSL
Posted in CSS&HTML&网页设计 on 2006/12/07 / 评论(0) »
分页之 XML + XSL
page.xml
page.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="page.xsl" ?>
<list>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
</list>
<?xml-stylesheet type="text/xsl" href="page.xsl" ?>
<list>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
</list>
» 阅读全文



