index.jsp

来自「jsp的技术教程」· JSP 代码 · 共 97 行

JSP
97
字号
<%@ include file="head.inc"%>
 <%@ page language="java" import="java.sql.*" %>
<jsp:useBean id="workM" scope="page" class="test.faq" />

<jsp:useBean id='clock' scope='page' class='dates.JspCalendar' type="dates.JspCalendar" />      
<%!
public String getStr(String str)
{
	try
	{
		String temp_p=str;
		byte[] temp_t=temp_p.getBytes("GBK");
		String temp=new String(temp_t,"ISO8859_1");
		return temp;
	}
	catch(Exception e)
	{
	 
	}
	return "null";
}
%>                        
<TABLE border=0 cellPadding=0 cellSpacing=0 width=760 align="center">
  <TBODY>
  <tr><td align="left" height=25>当前位置:<a href="../index.jsp">首页</a> -&gt; 查询商品   </td>
 <%@ include file="../member/date.inc"%>
  </tr>
  <TR bgColor=#3399ff>
    <TD height=1 colspan="2"><IMG height=1 src="images/spacer.gif" 
  width=16></TD></TR>
  <tr><td height=10 colspan="2"><IMG height=1 src="images/spacer.gif" 
  width=16></td></tr>
  </TBODY></TABLE>

  <table align="center" border="0" width="760" cellspacing="0" cellpadding="0" height="355">                  
	<tr>                  
		       
		<td width="10" height="100%"></td>
		<td width="1" height="100%" bgcolor="#3399ff"></td>
		<td width="10" height="100%"></td>
		<td width="589" height="331" valign="top" background="images/bg1.gif">                       
        <table border="0" width="100%" cellspacing="0" cellpadding="0">                  
          <tr>                  
            <td colspan="3" width="100%" height="20" bgcolor="#3399ff">&nbsp;<font color="#ffffff">站内搜索 -> 关键字:<b>
			<font color="Red">
			<%
			String keyWord;
			keyWord=request.getParameter("keyword");
			if(keyWord!=null)
			{
				out.println(keyWord);
			}
			%>
			</font></b></font>
			</td>
		  </tr>
		  <tr>
		 
		  <td align="center" colspan='3' valign="top">


	<form name="search_form" action="search.jsp" method="post">
        <tr>
                <td width="100%" height="56" valign="middle" align="center">
               查询商品: <br>
			   请输入关键字:<input type="text" name="keyword" size="16" value="请输入关键字" onmouseover="this.focus()" onfocus="this.select()"><br>
                   
			请选择查询范围:<select name="way">
                <option value="1">书名</option>
                <option value="2">作者</option>
				<option value="3">出版社</option>
                </select> 
				<input type="button" value="查询!" onclick="search_sub()"><br>
				
                </td><script language="javascript">
                        function search_sub()
                        {
                                if(document.search_form.keyword.value=="")
                                {
                                        window.alert("请输入关键字!");
                                        document.search_form.keyword.focus();
                                        return;
                                }
								 document.search_form.submit();
                              
                        }
                        </script>
        </tr>
        </form>               

        </td>
    </tr>
  </table>


<%@ include file="../member/footer.inc"%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?