我有一個網格。網格中有多個值。假設網格中有候選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>
除了實際輸入它之外,你似乎已經覆蓋了一切,有沒有解決不了的問題? – nvoigt
檢查此http://www.w3schools.com/asp/coll_querystring.asp –
感謝Guru卡拉...我會看到 – SANDEEP