I have a grid. there is multiple values in the grid. suppose there is candidate Id column in grid and there is check box in each row. I want to select multiple values of candidate Id through check box and pass this multiple selected values in the single query string to another page after passed it i will split the values using split() function and keep in array. because i have to perform some operation on target page using this multiple candidate ids. please give to some solution for this problem.
There is my grid. i have not include check box in this code
<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>