📄 blockmodify.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%@ page import="com.lovo.po.*" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>版块修改</title>
<link rel="stylesheet"rel="stylesheet" rev="stylesheet" href="css/block.css" />
</head>
<body>
<div id="rightWraper">
<div class="text">
<div class="r_title">版块修改</div><hr size="1">
<span class="list">
<form name="form1" action="servlet/ModifyBlockDO" method="post">
<input type="hidden" name="blockID" value="${param.blockID}"/>
<div>
版块名称:<input type="text" name="blockName" value="${param.blockName}">
</div>
<br>
<div>
版块描述:<input type="text" size="60" name="blockDescp" value="${param.blockDescribe}">
</div>
<br>
<div>
版块Logo:<input type="text" size="40" name="blockImg" value="${param.blockImg}">
</div>
<div class="display">logo默认是在webapp下的图片(如:images/forum/team_001.gif)</div>
<br>
<div><input type="submit" value="提交">
<input type="button" onclick="javascript:history.go(-1);" value="后退"></div>
</form>
</span>
</div>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -