框架集内的表格
我可以在 jsp 中的框架集中使用表格吗?我是jsp新手,不知道这怎么可能?我没有使用 iFrame。有谁可以帮助我吗?我的框架集中有两个框架?我想要将这两个框架放在桌子内。是否可以?任何帮助表示赞赏。提前致谢。
这是我正在使用的代码
<frameset cols="100%,0" frameBorder="no" framespacing="0" border="0">
<frame name="leftDualPane" scrolling="no"
src="<%=(String)session.getAttribute("tabViewJsp")%>"
frameborder="1" style="border-left-width: 0px; border-top-width: 0px;
border-bottom-width: 0px; border-right-width: 0px;">
</frame>
<frame name="rightDualPane" scrolling="no"
src="<%=(String)session.getAttribute("tabViewJsp")%>"
frameborder="7" style="border-left-width: 0px; border-top-width: 0px;
border-bottom-width: 0px; border-right-width: 0px;">
</frame>
</frameset>
Can I use tables inside a frameset in jsp? I am new to jsp and don't know how it is possible? I am not using iFrames. Can any body please help me? i have two frames inside my frameset? I want those two frames inside a table. Is it possible? Any help is appreciated. Thanks in advance.
This is the code that i am using
<frameset cols="100%,0" frameBorder="no" framespacing="0" border="0">
<frame name="leftDualPane" scrolling="no"
src="<%=(String)session.getAttribute("tabViewJsp")%>"
frameborder="1" style="border-left-width: 0px; border-top-width: 0px;
border-bottom-width: 0px; border-right-width: 0px;">
</frame>
<frame name="rightDualPane" scrolling="no"
src="<%=(String)session.getAttribute("tabViewJsp")%>"
frameborder="7" style="border-left-width: 0px; border-top-width: 0px;
border-bottom-width: 0px; border-right-width: 0px;">
</frame>
</frameset>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSP 只是您用来生成 HTML 的语言,这实际上是一个 HTML 问题。我认为您需要相信自己对于使用 IFRAMES 而不是框架的直觉。
JSP is just the language you're using to generate HTML, and this is really an HTML question. I think you need to trust your intuition about using IFRAMES rather than frames.