温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

ListBox中怎么实现多选并显示数据

发布时间:2021-08-07 11:10:09 来源:亿速云 阅读:152 作者:Leah 栏目:编程语言

ListBox中怎么实现多选并显示数据,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

  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语句之间的空格,否则出错  

  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.    

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI