gpt4 book ai didi

java - 如何从请求对象中选择 JSP 中的所需按钮

转载 作者:行者123 更新时间:2023-11-29 05:15:31 25 4
gpt4 key购买 nike

我的表单中的 HTML 页面上有三个按钮,如下所示

<input type="submit" value="Insert" name="btn"  />
<input type="submit" value="Update" name="btn" />
<input type="submit" value="Delete" name="btn" />

在 JSP 页面中,如果我点击插入,它会将数据插入数据库等等。

我使用了以下 if block ,但它不起作用(我检查没有 if,它起作用并将数据插入到表中)

<%if("Insert" == request.getParameter("btn")){
DBFaculty ins =new DBFaculty();
r = ins.insertTable(te);
if(r == 1){
%>
<h3 style="color: lightblue">Data insert in to table</h3>
<% }else {%>
<h3 style="color:lightcoral">Fail</h3>
<% }
}
%>

最佳答案

尝试在 if 中使用 equals() 而不是 == 来比较字符串。

关于java - 如何从请求对象中选择 JSP 中的所需按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26692370/

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