2006年11月13日

症状:
防火墙已经打开 1521 TNS端口。
使用jdbc thin driver 能连接 orcale,但oracle客户端(PL/SQL Developer)不能连接
Net Configuration Assistant 也不行
解决:
实际上除了 TNS端口(1521)外,orcale客户端还要连接其他端口,将TNSLSNR.exe ORACLE.EXE设置到防火墙例外列表中即可。

或使用TCPVIEW察看所需打开的端口 :-) .

2006年11月04日

IE:
<div style="height: 250px; overflow: auto;">
<table border=1>
    <tr  style="background-color:red;position:relative;top:expression(this.offsetParent.scrollTop);">
        <th>
            head
        </th>
    </tr>   
   。。。。。。。
</table>
</div>

firefox:
<div style="height: 250px; overflow: auto;">
<table border=1>
    <tr  style="position:fixed;background-color:red;">
        <th>
            head
        </th>
    </tr>   
   。。。。。。。
</table>
</div>

如果有一些空隙   请使用padding 调节。在IE中也可以 top:expression(this.offsetParent.scrollTop-2)这样调节。