I am trying to make a search bar with a few feilds. Right now the code is as follows:
        <asp:DropDownList ID="DropDownList1" runat="server" Height="25px">
            <asp:ListItem>Database</asp:ListItem>
            <asp:ListItem>Engine</asp:ListItem>
            <asp:ListItem>Pool</asp:ListItem>
        </asp:DropDownList>
        <asp:Button ID="Button1" runat="server" Text="Button" Height="25px" />
        <asp:TextBox ID="TextBox1" runat="server" Height="25px"></asp:TextBox>
        <asp:LinkButton ID="LinkButton1" runat="server">LinkButton</asp:LinkButton>
Right now it looks like crap and doesnt flow at all, I was wondering how I would go about making a better visual looking search bar with all the required feilds. Thanks.
Example: digg.com has images in there search bar.
EDIT: Basically I want to code this image: http://o.imm.io/qlQ.png
