groupmovemoviefromgroupdo.jsp

来自「一个用struts tiles的在线影院web系统」· JSP 代码 · 共 50 行

JSP
50
字号
<?xml version="1.0" encoding="gb2312" ?>
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="gb2312"%>
<%@ page import="com.eline.vod.utils.*"%>
<%@ page import="com.blue.web.common.util.*"%>
<%String indexId = StringUtils.toString(request.getParameter("indexId"));
            String movieId = StringUtils.toString(request.getParameter("movieId"));
            System.out.println("groupMoveMovieFromGroupDo.jsp.movieId=" + movieId + "&groupId=" + indexId);
            String[] strIdList = indexId.split(";");
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
		<title>groupDelete</title>
		<link href="../style/default.css" type="text/css" rel="stylesheet" />
		<script language="javascript">
function buttonCancel_onclick() {
	var dlgWnd = window;

	if (window.parent != null)
		dlgWnd = window.parent;
	dlgWnd.close();

	return true;
}
</script>
	</head>
	<body bgcolor="#f0f0f0" bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0">
		<form name="Form1" method="post" action="<%=SiteUrls.getInstance().getProperty(SiteUrls.GROUP_OPERATE)%>?webAction=4">
			<table width="100%" class="tableBorder" cellpadding="1" cellspacing="1">
				<tr>
					<td class="tableRow" height="50">
						您确定要移动到这
						<%=strIdList.length%>
						个组吗?
					</td>
				</tr>
				<tr>
					<td class="tableRow" align="center" valign="top" height="50">
						<input type="hidden" name="moveIDs" value="<%=indexId%>" />
						<input type="hidden" name="movieID" value="<%=movieId%>" />
						<input class="button2w" type="submit" value="移动" />
						<input class="button2w" type="button" value="放弃" onclick="return buttonCancel_onclick()" />
					</td>
				</tr>
			</table>
		</form>
	</body>
</html>

⌨️ 快捷键说明

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