<body>
    <form id="form1" runat="server">
    <div>
        <table style ="background-color :Gray ">
            <tr>
                <td colspan="2">
                    <asp:Button ID="Button1" runat="server" Text="Button" /></td>
            </tr>
            <tr>
                <td colspan="2">
                    <asp:DataGrid ID="DataGrid1" runat="server" Height="160px" Width="320px" BackColor ="white">
                    </asp:DataGrid></td>
            </tr>
            <tr>
                <td style="width: 100px">
                    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td>
                <td style="width: 100px">
                    <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox></td>
            </tr>
        </table>
    
    </div>
    </form>
</body>    各位大侠,我想单击button后在datagrid中显示以textbox1和textbox2中输入的值为条件的数据,请问这个功能要怎么实现呢?