moduserpoint.jsp

来自「一个简单实用的网上书城,可当作原型使用」· JSP 代码 · 共 46 行

JSP
46
字号
<%@page contentType="text/html"%><%@page pageEncoding="gbk"%><%@include file="isAdmin.jsp"%> <%--The taglib directive below imports the JSTL library. If you uncomment it,you must also add the JSTL library to the project. The Add Library... actionon Libraries node in Projects view can be used to add the JSTL 1.1 library.--%><%--<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> --%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <title>修改积分</title>    </head>    <body>        <h1>修改积分</h1>            <jsp:useBean id="user" class="czm.User" scope="page"/>        <%            user.ID=request.getParameter("UserID");            String pointStr=request.getParameter("npoint");            if(user.ShowUser()) {                if(pointStr!=null && pointStr!="") {                    user.UpdateScore(Integer.parseInt(pointStr));                }            %>            会员<%=user.ID%>现有积分<%=user.Point%>,请输入积分的改变值:        <form action="modUserPoint.jsp">            <input name="npoint" type="text" value=""/>            <input name="UserID" type="hidden" value="<%=user.ID%>"/>            <input type="submit" value="确定">        </form>        <%            }        %>    </body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?