⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productmodify.jsp

📁 J2EE电子商务系统开发从入门到精通---基于Struts和Hibernate技术实现
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@page import = "java.util.*"%>
<%@page import = "model.store.hibernate.*"%>
<%
    request.setCharacterEncoding("gb2312");
    Product product = (Product)session.getAttribute("product");
%>
<%@ include file="..\taglibs.jsp" %>

<!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=gb2312">
        <title>STORE SYSTEM</title>
        <style type="text/css">
            <!--
            .style1 {font-family: "华文新魏";
            font-size: 36px;
            }
            -->
        </style>
    </head>
    <body>
        <form name="form1" method="post" action="/EMIS/productmodify.do?id=<%=product.getId()%>">
		<html:errors/>
            <table width="503" height="253" border="0" align="center">
                <tr bgcolor="#DFDFFF">
                    <td height="26" colspan="2"><div align="center">货物信息管理--修改</div></td>
                </tr>
                <tr bgcolor="#FFFFCA">
                  <td height="19"><div align="right"><span class="TitleColor">编号</span></div></td>
                    <td><span class="TitleColor">
                        <input name="id" type="text" disabled id="password" value="<%=product.getId()%>">
                    </span></td>
                </tr>
                <tr bgcolor="#FFFFCA">
                  <td width="179" height="18"><div align="right">名称</div></td>
                    <td width="314"><span class="TitleColor">
                        <input name="name" type="text" id="password" value="<%=product.getName()%>">
                    </span></td>
                </tr>
                <tr bgcolor="#FFFFCA">
                    <td height="23"><div align="right">用途</div></td>
                    <td><span class="TitleColor">
                        <textarea name="purpose" cols="50" rows="5" id="password"><%=product.getPurpose()%>
                        </textarea>
                    </span></td>
                </tr>
                <tr bgcolor="#FFFFCA">
                    <td height="23"><div align="right">备注</div></td>
                    <td><textarea name="remarks" cols="50" rows="3" id="remarks"><%=product.getRemarks()%></textarea></td>
                </tr>
                <tr bgcolor="#DFDFFF">
                    <td height="21" colspan="2"><div align="left">
                        <div align="center">
                            <input type="submit" name="Submit" value="修改">
                        </div>
                    </div></td>
                </tr>
          </table>
        </form>
    </body>
</html>

⌨️ 快捷键说明

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