input.jsp
来自「这是一个基于J2EE的MVC model1架构的典型例子」· JSP 代码 · 共 49 行
JSP
49 行
<%-- Document : input Created on : 2009-4-19, 13:08:22 Author : Administrator--%><%@page contentType="text/html" pageEncoding="GBK"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><%request.setCharacterEncoding("GBK");%><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=GBK"> <title>将图片插入到数据库</title> </head> <body bgcolor="black" text="red"> <hr align="center" width="600" size="1" color="#0000FF"> <center><h1><marquee direction="left" behavior="alternate">请输入您要导入到数据库的图片信息:</marquee></h1></center> <hr align="center" width="600" size="1" color="#0000FF"> <form method="post" action="insert.jsp"> <table align="center" border="1" width="80%" bordercolorlight="#0000FF" cellpadding="2" bordercolordark="FFFFFF" cellspacing="0"> <tr> <td align="center"> 图片名称: </td> <td align="center"> <input type="text" name="name" size="50"> </td> </tr> <tr> <td align="center"> 文件: </td> <td align="center"> <INPUT TYPE="file" NAME="file"> </td> </tr> <tr> <td align="center"> <input type="submit" value="将图片插入到数据库"> </td> </tr> </table> </form> </body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?