`
javacoo
  • 浏览: 65534 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

velocity学习-----问题来了

阅读更多
最近开始研究velocity,不是很顺利,遇到一些小问题,简直是泼我冷水啊:<
       1:问题描述:我创建了一个页面index.vm ,用到iframe 代码如下:
       #set($cms4j_root_path="/CMS4J/templates/default/admin")

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>后台管理 powerby www.javacoo.org</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body style="margin: 0px" scroll="no">
<div style="position: absolute;top: 0px;left: 0px; z-index: 2;height: 65px;width: 100%">
<iframe frameborder="0" id="header" name="header" src='${cms4j_root_path}/head.vm' scrolling="no" style="height: 60px; visibility: inherit; width: 100%; z-index: 1;"></iframe>
</div>
<table border="0" cellPadding="0" cellSpacing="0" height="100%" width="100%" style="table-layout: fixed;">
<tr><td width="183" height="60"></td><td></td></tr>
<tr>
<td><iframe frameborder="0" id="menu" name="menu" src='${cms4j_root_path}/left.vm' scrolling="yes" style="height: 100%; visibility: inherit; width: 100%; z-index: 1;overflow: auto;"></iframe></td>
<td><iframe frameborder="0" id="main" name="main" src='${cms4j_root_path}/main.vm' scrolling="yes" style="height: 100%; visibility: inherit; width: 100%; z-index: 1;overflow: auto;"></iframe></td>
</tr></table>
</body>
</html>

     很奇怪,header部分能正常显示,menu和main部分却始终显示不出来,报的404页面找不到错误,起初以为是${cms4j_root_path}路径不正确,于是换为/CMS4J/templates/default/admin,结果还是一样。为什么header部分能正常显示,menu和main部分却不能呢?小弟始终找不到答案,百度,谷歌都找了,未果!还请大侠们帮忙解决一下啊!!小弟不胜感激:)
1
1
分享到:
评论
1 楼 javacoo 2008-11-05  
解决了:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> 后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="Text/Javascript" language="JavaScript">
<!--


  if (window.top != window)
  {
    window.top.location.href = document.location.href;
  }


//-->
</script>

<frameset rows="83,*" framespacing="0" border="0">
<frame src="head.vm" id="header-frame" name="header-frame" frameborder="no" scrolling="no">
 
  <frameset cols="180, 10, *" framespacing="0" border="0" id="frame-body">
    <frame src="left.vm" id="menu-frame" name="menu-frame" frameborder="no" scrolling="yes">
    <frame src="drag.vm" id="drag-frame" name="drag-frame" frameborder="no" scrolling="no">
    <frame src="main.vm" id="main-frame" name="main-frame" frameborder="no" scrolling="yes">
  </frameset>
</frameset>
</head>
<body>
</body>
</html>
这样就OK了,郁闷啊!!

相关推荐

    velocity-engine-core-2.3-API文档-中英对照版.zip

    赠送jar包:velocity-engine-core-2.3.jar; 赠送原API文档:velocity-engine-core-2.3-javadoc.jar; 赠送源代码:velocity-engine-core-2.3-sources.jar; 赠送Maven依赖信息文件:velocity-engine-core-2.3.pom;...

    velocity-engine-core-2.3-API文档-中文版.zip

    赠送jar包:velocity-engine-core-2.3.jar 赠送原API文档:velocity-engine-core-2.3-javadoc.jar 赠送源代码:velocity-engine-core-2.3-sources.jar 包含翻译后的API文档:velocity-engine-core-2.3-javadoc-...

    velocity-tools-generic-3.1-API文档-中英对照版.zip

    赠送jar包:velocity-tools-generic-3.1.jar; 赠送原API文档:velocity-tools-generic-3.1-javadoc.jar; 赠送源代码:velocity-tools-generic-3.1-sources.jar; 赠送Maven依赖信息文件:velocity-tools-generic-...

    velocity-1.5.jar,velocity-1.6.2-dep.jar,velocity-tools-1.3.jar

    1. **velocity-1.5.jar**: 这是Velocity的1.5版本。在这个版本中,Velocity提供了基本的模板引擎功能,包括变量替换、控制结构(如if、for、foreach)以及宏定义等。它支持JavaBean和Map对象的直接引用,并且通过...

    velocity-tools-2.0.jar

    velocity-tools-2.0.jar velocity-tools-2.0.jar velocity-tools-2.0.jar velocity-tools-2.0.jar velocity-tools-2.0.jar

    velocity-engine-core-2.1.jar

    velocity-engine-core-2.1.jar

    velocity-tools-generic-3.1-API文档-中文版.zip

    赠送jar包:velocity-tools-generic-3.1.jar 赠送原API文档:velocity-tools-generic-3.1-javadoc.jar 赠送源代码:velocity-tools-generic-3.1-sources.jar 包含翻译后的API文档:velocity-tools-generic-3.1-...

    velocity-engine-core-2.0.jar

    velocity 2.0 包需要的 jar 包 官方下载的,测试过了,可以运行 Demo 网上都有,关键几行代码: // ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "file"); // 按文件加载 // ve.init(); // Template t = ...

    velocity-dep-1.4.jar

    velocity-dep-1.4.jar velocity-dep-1.4.jar

    velocity-1.7.jar

    在实际项目中,将Velocity-1.7.jar与velocity-tools-2.0结合使用,可以构建出强大的动态内容生成系统,尤其是在Web应用开发中,它能够帮助开发者更高效地管理和呈现动态内容,同时保持良好的代码组织结构。...

    velocity-tools-view-1.4.jar

    velocity-tools-view-1.4.jar

    velocity-tools-view-2.0.jar

    velocity-tools-view-2.0.jar

    avalon-logkit-2.1.jar,commons-collections-3.2.jar,velocity-1.4.jar,velocity-tools-view-1.2.jar

    • commons-collections-3.2.jar • velocity-1.4.jar • velocity-tools-view-1.2.jar • avalon-logkit-2.1.jar

    velocity-engine-core-2.3.jar中文-英文对照文档.zip

    注:下文中的 *** 代表文件名中的组件名称。 # 包含: 中文-英文对照文档:【***-javadoc-API文档-中文(简体)-英语-对照版.zip】 jar包下载地址:【***.jar下载地址(官方地址+国内镜像地址).txt】 ...

    eclipse编辑velocity插件velocitysite-2.0.8

    10. **社区支持**:由于是开源项目,VelocitySite通常会有活跃的社区支持,用户可以获取更新、报告问题或者参与改进。 在使用VelocitySite-2.0.8之前,你需要确保你的Eclipse环境已经正确安装了Java开发工具(JDT)...

    velocity(1.1---1.5所有包)

    velocity(1.1---1.5所有包) velocity-1.4 velocity-1.5 velocity-dep-1.3.1 velocity-tools-1.1 velocity-tools-generic-1.2 velocity-tools-view-1.2 velocity-tools-view-1.3

    velocity-1.7-dep.jar

    velocity-1.7-dep.jar ============================================================

    velocity-tools-1.4.jar

    velocity-tools-1.4.jar

    velocity-tools-2.0-src.zip

    总的来说,深入研究 "velocity-tools-2.0-src.zip" 中的源代码,对于开发者来说是一次宝贵的学习机会,不仅可以提升对 Velocity 框架的理解,也能提高实际开发中的效率和质量。通过阅读源码,我们可以更好地利用 ...

    velocity-1.7-dep.jar.zip

    "velocity-1.7-dep.jar.zip" 是一个包含 Velocity 框架1.7版本依赖库的压缩文件。Velocity 是 Apache 软件基金会的一个开源项目,它是一个基于 Java 的模板引擎,主要用于生成动态 Web 内容。这个特定的版本(1.7)...

Global site tag (gtag.js) - Google Analytics