Source code for /src/od_tree_top.jsp.txt

//======================================================================//
// Author: Mark Qian <markqian@hotmail.com>                             //
// WWW: http://www.coolshare.com                                        //
// Copyright (c) 2006, Mark Qian                                        //
//                                                                      //
// You must contact Mark Qian to get a permission of use                //
// in case you want to make any use of the codes except viewing it     //
// on Mark's site.                                                      //
//======================================================================//


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<HEAD>
	<TITLE>Auto-Complete with Hidden frames using Mark's Communicator</TITLE>
</HEAD>

<%
  String a = request.getParameter("a");
  a = a==null?"AJAX":a;
  String showType = request.getParameter("showType");
  showType = showType==null?"Link":showType;

%>

<frameset rows="*, 0, 0">
<frame name="main" src="/RemoteScriptGuru/jsp/javascriptlab/ajax/on_demand_tree/od_tree.jsp?a=<%= a%>&showType=<%=showType%>">

<frame name="hiddenFrame_0" id="hiddenFrame_0" src="about:blank">


<frame name="hiddenFrame_1" id="hiddenFrame_1" src="about:blank">


</frameset>
</html>