jsp页面自动跳转有关问题,大神帮帮小弟我

jsp页面自动跳转问题,大神帮帮我
按返回和自动跳转是同一个路径,按返回能跳转,但是自动跳转获取不到id值怎么办
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'test.jsp' starting page</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<meta http-equiv=refresh content=5;url=<%="query.action?Id=<s:property value='Id'/>" %>>
  </head>
  
  <body>
<b style=color:blue><span id=jump>5</span> 秒钟后页面将自动返回项目管理页面...<a href="query.action?Id=<s:property value='Id'/>">返回</a></b>
  </body>
</html>
<script>
function countDown(secs){
jump.innerText=secs;
if(--secs>0)
setTimeout("countDown("+secs+" )",1000);
}
countDown(5);
</script>
------解决思路----------------------
url=<%="query.action?Id=<s:property value='Id'/>" %>


需要加<%=%>?