forked from CxTyler/JVL_Actions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.jsp
29 lines (28 loc) · 805 Bytes
/
search.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<%--
Document : search
Created on : 1 Dec, 2014, 2:15:38 PM
Author : breakthesec
--%>
<%@ include file="/header.jsp" %>
<form id="form1" name="form1" method="GET" action="search.jsp">
<label>Please Enter Keyword:
<input type="text" name="keyword"/>
</label>
<br>
<input type="submit" name="action" value="Search"/>
</form>
<br/>
<%
String searchedName = request.getParameter("keyword");
if (searchedName != null)
{
//code for searching pages related to the given keyword goes here..
%>
Search Results for <%=searchedName%>
<br/>...
<br/>...
<%
//Show result pages
}
%>
<%@ include file="/footer.jsp" %>