如何在jsp中使用下拉列表、文本框和搜索按钮获取数据

发布于 2024-10-07 14:54:58 字数 135 浏览 0 评论 0原文

我想使用jsp、javascript和mysql显示数据。我的问题是,如果我从下拉列表中选择一个条目假设“标题”,并在文本框中给出标题名称“部分差异”,然后单击搜索按钮,它应该显示所有以字母“....par”开头的标题名称'。请帮我 ...........

I want to display data using jsp,javascript and mysql. My Q. is If i select an entry suppose 'title' from dropdownlist and give a title name 'partial dif' in textbox and click on search button it should show me all the title names that starts with the letters '....par'. Please help me ...........

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花期渐远 2024-10-14 14:54:58

假设您有名为 form.jsp、form1.jsp... 的文件和一个包含列类型和名称的表 your_table。

    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>form.jsp</title>
    </head>
    <body>
        <form action="form1.jsp" method="post" name=frm>
        <select name="list">
            <option>title</option>
            <option>author</option>
            <option>publication</option>
        </select>
        Name<input type="text" name=txt value=""/>
        <input type="submit" vaue="GO"/>
        </form>
    </body>
</html>

表单2.jsp

    <%String list1=request.getParameter("list");
         String name=request.getParameter("txt");
         name1=name.substring(0,3);
          Connection con;
                 PreparedStatement ps,ps1,ps2;
                 ResultSet rs,rs2;
       try{
                 String driverName="sun.jdbc.odbc.JdbcOdbcDriver";
                 String url="jdbc:odbc:rail";
            String username="root";
            String password="root";
            Class.forName(driverName);
            con=DriverManager.getConnection(url,username,password);
             ps=con.prepareStatement("Select name from your_table where type=? and name like ?%);
             ps.setString(1,list1);
             ps.setString(2,name1);
             rs=ps.executeQuery();
             while(rs.next())
             {
               out.println(rs.getString(1));
               }

            }
         catch(Exception e)
         {out.println(e);}   
%>

suppose u have files named form.jsp, form1.jsp... and a table your_table with columns type and name.

    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>form.jsp</title>
    </head>
    <body>
        <form action="form1.jsp" method="post" name=frm>
        <select name="list">
            <option>title</option>
            <option>author</option>
            <option>publication</option>
        </select>
        Name<input type="text" name=txt value=""/>
        <input type="submit" vaue="GO"/>
        </form>
    </body>
</html>

form2.jsp

    <%String list1=request.getParameter("list");
         String name=request.getParameter("txt");
         name1=name.substring(0,3);
          Connection con;
                 PreparedStatement ps,ps1,ps2;
                 ResultSet rs,rs2;
       try{
                 String driverName="sun.jdbc.odbc.JdbcOdbcDriver";
                 String url="jdbc:odbc:rail";
            String username="root";
            String password="root";
            Class.forName(driverName);
            con=DriverManager.getConnection(url,username,password);
             ps=con.prepareStatement("Select name from your_table where type=? and name like ?%);
             ps.setString(1,list1);
             ps.setString(2,name1);
             rs=ps.executeQuery();
             while(rs.next())
             {
               out.println(rs.getString(1));
               }

            }
         catch(Exception e)
         {out.println(e);}   
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文