2008-02-19から1日間の記事一覧

position: relative;のテーブルの枠だけが表示されてしまう

IEで、非表示にしたはずのテーブルの枠だけが表示されるというなぞの現象。結局、原因わからず。 <html><body> <a href="#" onclick="document.getElementById('div1').style.display = 'block'; document.getElementById('div2').style.display = 'none';">1を表示(2は非表示)</a> <a href="#" onclick="document.getElementById('div2').style.display = 'block';">2を表示</a> <…</body></html>

JspSourceDependent.getDependants() で悩む

とある案件で開発環境を構築していてはまったメモ。 既存のプロジェクトをTomcat5.5上にデプロイし、JSPを表示しようととしたら、、、 Generated servlet error: The return type is incompatible with JspSourceDependent.getDependants()JSPの問題ではなさ…