溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ListBox中怎么實(shí)現(xiàn)多選并顯示數(shù)據(jù)

發(fā)布時(shí)間:2021-08-07 11:10:09 來源:億速云 閱讀:177 作者:Leah 欄目:編程語言

ListBox中怎么實(shí)現(xiàn)多選并顯示數(shù)據(jù),很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

  1. <%@ Page Language="C#" AutoEventWireup="true" Debug="true"%>  

  2. <%@import namespace="System.Data"%>  

  3. <%@import namespace="System.Data.SqlClient"%>  

  4.  

  5.  

  6.  

  7. <FORM RUNAT=< SPAN>"server">  

  8. "ckbEmployees" runat="server" RepeatLayout="table" RepeatDirection="vertical" RepeatColumns="3" CellPadding="9" CellSpacing="18" TextAlign="right" OnSelectedIndexChanged="subListChange" AutoPostBack="true" />  


  9.  

  10. "dgEmployee" runat="server" />  

  11.  

  12.  

  13.  

  14. <SCRIPT LANGUAGE=< SPAN>"c#" runat="server">  

  15. private void Page_load(object sender,System.EventArgs e)  

  16. {  

  17. if(!IsPostBack)  

  18. {  

  19.    string strConnection ="server=.;uid=sa;pwd=sunix!;database=northwind";  

  20.    string strSQLforCheckBoxes = "select LastName ,EmployeeID from employees order by lastname";  

  21.    SqlConnection objConnection = new SqlConnection(strConnection);  

  22.    SqlCommand objCommand = new SqlCommand(strSQLforCheckBoxes,objConnection);  

  23.    objConnection.Open();  

  24.    ckbEmployees.DataSource = objCommand.ExecuteReader();  

  25.    ckbEmployees.DataTextField = "LastName";  

  26.    ckbEmployees.DataValueField = "EmployeeID";  

  27.    ckbEmployees.DataBind();  

  28.    objConnection.Close();  

  29. }  

  30. }  

  31. private void subListChange(object s,System.EventArgs e)  

  32. {  

  33. Response.Write("subListchange triggered


    ");  


  34. string strWhereClause="";  

  35. foreach (ListItem liThisOne in ckbEmployees.Items)  

  36. {  

  37.    if(liThisOne.Selected)  

  38.    {  

  39.     strWhereClause += "EmployeeID = " + liThisOne.Value + " OR ";  

  40.    }  

  41. }  

  42. Response.Write("strWhereClause=
    "
    +strWhereClause+"


    ");  


  43. if(strWhereClause.Length>0)  

  44. {  

  45.    dgEmployee.Visible = true;  

  46.    string str = strWhereClause.Substring(0,strWhereClause.Length - 3);  

  47.    strWhereClause = " where " + str;  

  48.    string strConnection = "server=.;uid=sa;pwd=sunix!;database=northwind";  

  49.    string strSQLforGrid = "select TitleOfCourtesy,firstName,lastName,country,region,city,notes from employees " + strWhereClause;  

  50.      //Response.Write(strSQLforGrid); sql語句之間的空格,否則出錯(cuò)  

  51.    SqlConnection objConnection = new SqlConnection(strConnection);  

  52.    SqlCommand objCommand = new SqlCommand(strSQLforGrid,objConnection);  

  53.    Response.Write("strSQLforGrid=
    "
    +strSQLforGrid+"


    ");  


  54.    objConnection.Open();  

  55.    dgEmployee.DataSource = objCommand.ExecuteReader();  

  56.    dgEmployee.DataBind();  

  57.    objConnection.Close();  

  58. }  

  59. else 

  60. {  

  61.    dgEmployee.Visible = false;  

  62. }  

  63. }  

  64.    

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI