Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はGridviewを持っており、ヘッダーにはテキストボックスとラベルがあり、グリッドビューの外側に検索ボタンがあり、ユーザーが検索をクリックすると、それぞれの列のテックスボックス値でグリッドビューのデータをフィルタリングする必要があります。
これを試して
TextBox textBox = (TextBox)gridView1.HeaderRow.FindControl("contorlId");
列内を具体的に検索するには、インデックスでセルを識別します
TextBox textBox = (TextBox)gridView1.HeaderRow.Cells[0].FindControl("contorlId");