从iframe内部调用时,请求参数无法正常工作

时间:2011-07-29 21:30:31

标签: jsp struts

我有一个名为search.jsp的搜索页面。我对此页面有相应的struts搜索操作。当您点击“搜索”链接时,一切都很完美。

我的搜索页面网址类似于

      http://www.localhost:8080/Search.ff?blah=1&popo=2

现在我在iframe的网站的不同页面中调用相同的搜索页面。

我现在使用相同的网址作为iframe src网址

     http://www.localhost:8080/Search.ff?blah=1&popo=2&showheader=yes

我尝试将search.jsp页面中的参数作为

     <% String showheader =  (String)request.getParamter("showheader"); %>

当我调试showheader为空时。

我希望在iframe中调用搜索页面时,我不应该显示搜索页面标题。

我不明白真正的问题是什么,以及如何纠正这个问题。

1 个答案:

答案 0 :(得分:0)

<% String showheader =  (String)request.getParameter("showheader"); %>

(差异是报价)