当前位置:七道奇文章资讯网站建设网站编程
日期:2010-12-08 09:35:00  来源:本站整理

asp.net获得复选框值代码[网站编程]

赞助商链接



  本文“asp.net获得复选框值代码[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

我们介绍关于操纵asp教程.net 获得checkbox值的几种办法,

html代码

  1. <form id="form1" runat="server"> 
  2. <div> 
  3. <asp:label id="label1" runat="server" text="label" enableviewstate="false"></asp:label> 
  4. <asp:checkboxlist id="checkboxlist1" runat="server"> 
  5. <asp:listitem>zhangsan</asp:listitem> 
  6. <asp:listitem>lisi</asp:listitem> 
  7. <asp:listitem>wangwu</asp:listitem> 
  8. <asp:listitem>zhaoliu</asp:listitem> 
  9. </asp:checkboxlist><asp:button id="button1" runat="server" text="button" onclick="button1_click" /> 
  10. </div> 
  11. </form> 
  12.  

c获得值.

  1. {  
  2. int i ;  
  3. string str = "";  
  4. for (i = 0; i <checkboxlist1.items.count; i++)  
  5.  
  6. if (checkboxlist1.items[i].selected ) str+ =checkboxlist1.items[i].value;  
  7. label1.text=str;  
  8. }   
  9.  

下面讲一下关于

第一种:得到checkbox的值

  1. string save_cbljl = "";   
  2. for (int i = 0; i < this.cbljl.items.count; i++)   
  3. {   
  4. if (this.cbljl.items[i].selected == true)   
  5. {   
  6. save_cbljl += this.cbljl.items[i].value + ",";   
  7. }   
  8. }   
  9. response.write(save_cbljl);   
  10.  
  11. string save_cbljl = "";  
  12. for (int i = 0; i < this.cbljl.items.count; i++)  
  13. {  
  14. if (this.cbljl.items[i].selected == true)  
  15. {  
  16. save_cbljl += this.cbljl.items[i].value + ",";  
  17. }  
  18. }  
  19. response.write(save_cbljl);  
  20.  

第二种:得到checkbox的值

  1. string str_save_cbljl = "";   
  2. foreach (listitem li in cbljl.items)   
  3. {   
  4. if (li.selected == true)   
  5. {   
  6. str_save_cbljl += li.value + ",";   
  7. }   
  8. }   
  9. response.write(str_save_cbljl);   
  10.  

  以上是“asp.net获得复选框值代码[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • ASP利用正则表达式提取内容
  • nginx 反向代理iis支持 ASP脚本设置
  • <b>ASP.NET安全设置防备ASPXSpy</b>
  • Ubuntu Server+Apache 运行 asp.net
  • 怎样ASP.NET MVC调用Delphi开辟的Web报表
  • 学习ASP.NET需求举行的步骤办法
  • ASP.NET脚本过滤-避免跨站脚本攻击
  • Asp WinHttp.WinHttpRequest.5.1 对象利用详解
  • ASP防XSS注入函数
  • Asp 防备CC攻击模块 (Anti-CC.asp)
  • metasploit metasploit 中文系统安装失利问题
  • Ubuntu 11下安装Metasploit Pro 4.0.0
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .