网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

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

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

成都创新互联一直在为企业提供服务,多年的磨炼,使我们在创意设计,网络营销推广到技术研发拥有了开发经验。我们擅长倾听企业需求,挖掘用户对产品需求服务价值,为企业制作有用的创意设计体验。核心团队拥有超过10多年以上行业经验,涵盖创意,策化,开发等专业领域,公司涉及领域有基础互联网服务服务器托管雅安成都app软件开发公司、手机移动建站、网页设计、网络整合营销。

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

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

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

  4.  

  5.  

  6.  

  7. "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. "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.    

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


网站题目:ListBox中怎么实现多选并显示数据
分享URL:http://bjjierui.cn/article/gggjec.html

其他资讯