JSP页面重新加载问题
我在一页上有一个超链接,显示 results.jsp。当我单击该链接时,它会转到另一个页面(例如 show_article.jsp),并将路径参数附加到 url 上。在此页面上,我使用 url 中传递的路径读取文本文件,并将该文件显示为带有 <%= stringName %> 的字符串。在网页上。
现在,当我返回 results.jsp 页面并再次单击超链接或重新加载 show_article.jsp 时,它会显示先前的字符串与在 show_article.jsp 页面上读取的新文本字符串连接。
你能帮我吗?
I have a hyperlink on one page say results.jsp. When I click on the link, it goes to another page say show_article.jsp with the path parameter appended to the url. On this page I read the text file with using the path passed in the url and display this file as a string with <%= stringName %> on the webpage.
Now when I go back to results.jsp page and click on the hyperlink again or reload show_article.jsp, it displays previous string concatenated with the new text string read on show_article.jsp page.
can you please help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是转到 show_article.jsp 的代码片段。originalQuery 是一个带空格的字符串,path 是一个字符串,其中包含要显示其内容的文本文档的路径。
首先单击文档名称后,我会看到“文档内容”。然后,当我刷新页面时,我看到“文档内容文档内容”
Following is the code snippet which goes to show_article.jsp originalQuery is a string with spaces and path is a string that contains path of the text document whose contents are to be shown.
After clicking on Document Name first I see "Document Contents". Then when I refresh the page I see "Document Contents Document Contents"