CSS技巧 html特技 网页设计
关于DW8装了IE7ftp地址无法保存的一些问题的补丁终于出来了,还没来得及试先帖下来再说
原文地址: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:


一般地,禁止另存为的方法是:
标记中加入


<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
xsl 分頁
Posted in CSS&HTML&网页设计 on 2006/12/08 / 评论(0) »
分頁使用中遇到幾個問題
WD-xsl版本中和
版本中遇到的問題
wd-xsl版本支持expr 但Transform不支持此功能
Transform支持
在WD-xsl版本中 將要改爲
分页之 XML + XSL
Posted in CSS&HTML&网页设计 on 2006/12/07 / 评论(0) »
分页之 XML + XSL
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>

分页: 1/3 第一页 1 2 3 下页 最后页 [ 显示模式: 摘要 | 列表 ]