asp.net c#高级搜索

时间:2014-09-16 14:46:33

标签: c# asp.net search

目前在网站上的

,你可以看到重复数据库中的所有个人资料。

<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">

    <ItemTemplate>

               <div class="profilbox">
                    <div id="billedeSmall">
                        <img alt="" src="prod_image/<%#Eval ("bruger_billede") %>" width="100" height="100" />
                        </div>
                <h3><%# Eval("bruger_fornavn") %><br /><%# Eval("bruger_efternavn") %></h3>
                <p>Alder: <%# Eval("bruger_alder") %>år.<br />Søger: <%# Eval("bruger_søger") %><br />Kommune: <%# Eval("bruger_kommune") %>
                   <br /><a href="profilNormal.aspx?id=<%#Eval("bruger_id") %>">...Vis profil</a></p>

            </div>

        </ItemTemplate>

    </asp:Repeater>

    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:DatabaseConnectionString1 %>" SelectCommand="SELECT  * FROM brugere ORDER BY NEWID()"></asp:SqlDataSource>

这里有一个带有1个下拉列表的表格,用于“显示正在搜索的个人资料”,其中包含2个texbox,这些文本框在textbox1和textbox2之间是年龄,最后一个文本框可以搜索区域。< /强>

<table class="auto-style3">
    <tr>
        <td class="auto-style4">vis profiler der søger:</td>
        <td>
            <asp:DropDownList ID="DropDownList1" runat="server">
                <asp:ListItem>mand</asp:ListItem>
                <asp:ListItem>kvinde</asp:ListItem>
            </asp:DropDownList>
        </td>
    </tr>
    <tr>
        <td class="auto-style4">age between: </td>
        <td>
            <asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
            og<asp:TextBox ID="TextBox5" runat="server"></asp:TextBox>
        </td>
    </tr>
    <tr>
        <td class="auto-style5">i kommunen:</td>
        <td class="auto-style6">
            <asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
        </td>
    </tr>
    <tr>
        <td class="auto-style4">&nbsp;</td>
        <td>
            <asp:Button ID="Button1" runat="server" Text="Søg" OnClick="Button1_Click" />
        </td>
    </tr>
</table>

这很遗憾,因为我不知道从哪里开始代码。我希望它的工作方式如下:如果您在下拉列表中选择“男性”并单击按钮,则在数据库列中显示所有具有“男性”的配置文件,称为“正在寻找”或其他方式。

然后如果你输入年龄之间的东西:textbox4和textbox5显示所有的男性配置文件,如果用户在两个文本框中输入的话,则显示20到30之间的配置文件。这有意义吗?我仍然是ASP.net c#的初学者。对不起,如果这不是一个真正的问题。

我现在开始使用codebehind,这是正确的想法吗?任何人都可以告诉我应该如何在我的页面上显示结果?再次,我还是新的,请耐心等待。

 protected void ButtonSearch_Click(object sender, EventArgs e)
    {



        string statement = @"SELECT * FROM brugere";

        string whereConcatenator = "WHERE ";

        if (DropDownListSøger.SelectedItem != null)
        {
            statement += whereConcatenator;
            statement += "bruger_søger= '" + DropDownListSøger.SelectedItem.Value + "' ";

            whereConcatenator = "OR ";
        }

       if (TextBoxKommune.Text.Length > 0)
        {
            statement += whereConcatenator;
            statement += "bruger_kommune LIKE '%" + TextBoxKommune.Text + "%' ";

            whereConcatenator = "OR ";
        }


        Response.Write(statement);

        SqlConnection Conn = new SqlConnection();
        Conn.ConnectionString = ConfigurationManager.ConnectionStrings["DatabaseConnectionString1"].ToString();
        SqlCommand cmd = new SqlCommand();
        cmd.Connection = Conn;
        cmd.CommandType = CommandType.Text;
        cmd = new SqlCommand(statement, Conn);

        Conn.Open();
        SqlDataReader reader = cmd.ExecuteReader();


        while (reader.Read())
        {

        }

该网站的图片以获得更好的说明:search

1 个答案:

答案 0 :(得分:0)

它几乎适用于此,但&#34; kommune&#34;仍然没有100%的工作

protected void ButtonSearch_Click(object sender,EventArgs e)     {

    string statement = @"SELECT * FROM brugere";

    string whereConcatenator = " WHERE ";

    if (DropDownListSøger.SelectedItem != null)
    {
        statement += whereConcatenator;
        statement += "bruger_søger ='" + DropDownListSøger.SelectedItem.Value + "' ";

        whereConcatenator = "AND ";
    }


    if (TextBox_AlderFra.Text != "")
      {

         statement += whereConcatenator;
         statement += " bruger_alder BETWEEN '" + TextBox_AlderFra.Text + "' AND '" + TextBox_AlderTil.Text + "'";
         whereConcatenator = "AND ";

     }
    if (TextBoxKommune.Text.Length > 0)
    {
        statement += whereConcatenator;
        statement += "bruger_kommune = '%" + TextBoxKommune.Text + "%' ";

    }

   SqlDataSource1.SelectCommand = statement;


}