jsp自己

作者: 行之北斗 | 来源:发表于2019-04-01 16:41 被阅读0次

    返回信息,request.setAttribute(arg0, arg1);第一个属性名,第二个属性值

    request.setAttribute("resultMsg", msg);
    
    image.png

    网页从后台取信息

    在body中写
    <%
    /*  网页从后台取信息 */
        String resultMsg = (String)request.getAttribute("resultMsg");
    %>
    <%
    
    if(resultMsg!=null&&!resultMsg.isEmpty()){ %>
    
    <%=
    resultMsg
    %>
    <%} %>
    
    image.png

    相关文章

      网友评论

          本文标题:jsp自己

          本文链接:https://www.haomeiwen.com/subject/rmnvbqtx.html