2013-04-12 156 views
1

我有一個網格。網格中有多個值。假設網格中有候選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> 
+0

除了實際輸入它之外,你似乎已經覆蓋了一切,有沒有解決不了的問題? – nvoigt

+0

檢查此http://www.w3schools.com/asp/coll_querystring.asp –

+0

感謝Guru卡拉...我會看到 – SANDEEP

回答

2

嗯,我不喜歡的東西,在不久的過去,程序是:

  1. 遍歷你的頁面找到複選框,並添加那些誰檢查,在字符串生成器,如:在頁碼
 
      StringBuilder sb = new StringBuilder(); 

      sb.Append(yourcheckbox); 
      sb.Append(","); 

您可以使用「,」分割它,並且您將擁有所有複選框。

祝你好運

+0

謝謝zeeshan ... – SANDEEP

+0

歡迎你Sandeep – zeeshan

相關問題