showModalDialogウィンドウでページングを実現


ビジネスニーズのため、モデルダイアログボックスでもページングを実現するには、2つのテクニックがあります.
1.   if   you   are   using   IE5.5   or   6,   try   to   add   this   line   to   your   code          2.   or   use   a   frameset   or   IFRAME     to   house   your   test.jsp
 
 
第1点、私は试して、駄目なようで、IEバージョンの制限があって、私は放弃して、もしネットユーザーが知っているついでに弟に言って、ほほほ.
 
2つ目のポイントでした
showModalDialog('test_frame.jsp',")は'test_frame.jspには
あなたのページングJSメソッドにwindowを追加します.location.href=「あなたが移動するページやACTION」でいいです.
 
<%@ page language="java" pageEncoding="GB2312"%>
<%
	//             
	String linkto = request.getParameter("linkto");
	linkto=linkto.replace("|", "&");//     &         
	String title=request.getParameter("title");
	title=new String(title.getBytes("ISO-8859-1"),"gbk");
%>
<html>
<head>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<title><%= title %></title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/include/css/style.css" type="text/css">
</head>
<frameset rows="100" frameborder=no border="0" framespacing="0">
  <frame src="<%= linkto %>" name="ifm" scrolling=no noresize>
</frameset><noframes>
<body>
</body>
</noframes>

</html>