groupremovemoviefromgroup.jsp

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

JSP
55
字号
<?xml version="1.0" encoding="gb2312" ?>
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="gb2312"%>
<%@ page import="com.blue.web.common.util.*"%>
<%@ page import="com.eline.vod.utils.*"%>
<%String movieId = StringUtils.toString(request.getParameter("movieId"));
            String groupId = StringUtils.toString(request.getParameter("groupId"));
            
 
            int index = movieId.indexOf(";");
            if (index >= 0)
            movieId = movieId.substring(0, movieId.indexOf(";"));
            System.out.println("groupMoveMovieFromGroup.jsp.movieId=" + movieId);    
            System.out.println("groupRemoveMovieFromGroup.jsp.movieId=" + movieId + "&groupId=" + groupId);
            //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>groupRemoveMovieFromGroup</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">
		<%System.out.println(SiteUrls.getInstance().getProperty(SiteUrls.GROUP_OPERATE));%>
		<form name="Form1" method="post" action="<%=SiteUrls.getInstance().getProperty(SiteUrls.GROUP_OPERATE)%>?webAction=1">
			<table width="100%" class="tableBorder" cellpadding="1" cellspacing="1">
				<tr>
					<td class="tableRow" height="50">
						您确定要删除这项数据吗?
					</td>
				</tr>
				<tr>
					<td class="tableRow" align="center" valign="top" height="50">
						<input type="hidden" name="movieID" value="<%=movieId%>" />
						<input type="hidden" name="groupID" value="<%=groupId%>" />
						<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 + -
显示快捷键?