google-taglib/rss/google-rss-examples/key.jsp
2017-06-07 14:45:06 -07:00

21 lines
342 B
Text

<%
// Copyright (c) 2002-2004, Erik C. Thauvin
// All rights reserved.
String key = request.getParameter("key");
if ((key != null)&& (key.trim().length() > 0))
{
pageContext.setAttribute("google_key", key, PageContext.APPLICATION_SCOPE);
%>
<%@include file="search.html"%>
<%
}
else
{
%>
<%@include file="key.html"%>
<%
}
%>