Tuesday, October 31, 2017

ASP.NET பேசிக் கன்ட்ரோல்கள்: பகுதி-6 செக் பாக்ஸ் கண்ட்ரோல்
இந்த வீடியோவில் நாம் செக் பாக்ஸ் கண்ட்ரோல் மற்றும் செக் பாக்ஸ் லிஸ்ட் கண்ட்ரோல் பற்றி பார்ப்போம்.


SOURCE CODE:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm7.aspx.cs" Inherits="textboxdemo.WebForm7" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
        <asp:CheckBoxList ID="CheckBoxList1" runat="server">
            <asp:ListItem >Sujatha</asp:ListItem>
            <asp:ListItem >Bala kumaran</asp:ListItem>
            <asp:ListItem >Siva sankari</asp:ListItem>
          
        </asp:CheckBoxList>
   
       
        <br />
        <br />
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Submit" />
        <br />
        <br />
        <br />
        <asp:Label ID="Label1" runat="server" Text="--"></asp:Label>
   
       
    </div>
    </form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace textboxdemo
{
    public partial class WebForm7 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {

            string strvalue="";
                foreach (ListItem i in CheckBoxList1.Items)
                { 
                    if (i.Selected)
                    {
                        strvalue += i.Text;
                    }
                }
                Label1.Text = strvalue;

        }
    }
}
நன்றி மீண்டும் நாளை  சந்திப்போம்.

முத்து கார்த்திகேயன், மதுரை
ads Udanz

No comments:

Post a Comment