私はグリッドを持っています。グリッドに複数の値があります。グリッドに候補 Id 列があり、各行にチェック ボックスがあるとします。チェックボックスを使用して候補 ID の複数の値を選択し、この複数の選択された値を単一のクエリ文字列で別のページに渡したいと思いますsplit()
。関数を使用して値を分割し、配列に保持します。この複数の候補IDを使用して、ターゲットページで何らかの操作を実行する必要があるためです。この問題の解決策を教えてください。
私のグリッドがあります。私はこのコードにチェックボックスを含めていません
<asp:GridView ID="grdReq" runat="server" AutoGenerateColumns="false" CssClass="SimpleGrid" OnRowDataBound="grdReq_RowDataBound">
<Columns>
<asp:BoundField DataField="CandidateID" HeaderText="Candidate Id" />
<asp:BoundField DataField="Candidate Name" HeaderText="Candidate Name" />
<asp:BoundField DataField="Current Organization" HeaderText="Current Organization" />
<asp:BoundField DataField="Current Designation" HeaderText="Current Designation" />
<asp:BoundField DataField="Overall Exp" HeaderText="Overall Exp" />
<asp:BoundField DataField="Qualification" HeaderText="Qualification" />
</Columns>
</asp:GridView>