在 JSP 中的 <% %> 代码片段中添加链接
Posted
技术标签:
【中文标题】在 JSP 中的 <% %> 代码片段中添加链接【英文标题】:Adding links inside <% %> code fragment in JSP 【发布时间】:2021-07-08 06:38:39 【问题描述】:我已经编写了一个 JSP 页面 (profile.jsp),并且我想在满足某些条件时访问一个链接(在 if 语句中)。 但是,每当我使用标签(在 内)链接网页时,它会给我编译错误吗? 例如, Google %>
【问题讨论】:
你能添加你得到的错误吗? 【参考方案1】:使用 response.sendRedirect 方法 你可以检查一下,这可能会有所帮助。
<%
//SAMPLE CODE
boolean userSubmittedForm = true;
if( userSubmittedForm ) //sample condition
response.sendRedirect("https://www.example.com");
%>
【讨论】:
以上是关于在 JSP 中的 <% %> 代码片段中添加链接的主要内容,如果未能解决你的问题,请参考以下文章