gpt4 book ai didi

java - 将一个jsp页面链接到另一个jsp页面

转载 作者:可可西里 更新时间:2023-11-01 13:34:38 26 4
gpt4 key购买 nike

这是一个很简单的问题,但是作为新手...

我有两个文件:login.jsp 和 report.jsp它们都在同一个 WebContent 文件夹中。

我想要一个 report.jsp 上的链接,单击该链接后,我将转到 login.jsp

页面的 jsp 部分如下所示:

Connection conn = (Connection)session.getAttribute("conn"); //retrieves the connection from the session

String lot_id = request.getParameter("lotnum");
session.setAttribute("lot_id",lot_id);

out.print("Report on Lot Number: ");
out.print(request.getParameter("lotnum")+"<br>");


//<a href="login.jsp">Click here to go to login page</a>
// this is supposed to be an anchor tag linking this page to login.jsp, and where I am getting my error...

Statement sql = conn.createStatement(); //create statement using the connection

//... ... code for the rest of the page goes here...

谢谢你,

非常感谢

最佳答案

尝试输入您的文件夹名称:

out.print("<a href='/foldername/login.jsp'>Click here to go to login page</a>");

关于java - 将一个jsp页面链接到另一个jsp页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20256261/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com