Here is a gridview from ASPX page (abbreviated):
<asp:gridview ID="Gridview1" runat="server" AutoGenerateColumns="false" OnRowCommand="GridView_RowCommand" DataKeyNames="order_no" onrowdatabound="Gridview1_RowDataBound" AllowPaging="false" >
<Columns>
<asp:HyperLinkField DataTextField="order_no" HeaderText="Order Number" ItemStyle-Font-Bold="true" /><asp:HyperLinkField />
<asp:BoundField DataField="id_number" HeaderText="Customer ID" ItemStyle-Font-Bold="true" />
</Columns>
</asp:gridview>
The ASPX page has a textbox with a label "Enter Customer ID" and a Button. When user enters a text and clicks the button, I want in the code behind find the value of Order_no.