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

Monday, October 30, 2017

ASP.NET பேசிக் கன்ட்ரோல்-5 ரேடியோ பட்டன் லிஸ்ட்




.
இந்த வீடியோவில் நாம் ரேடியோ பட்டன் லிஸ்ட் பற்றி காண இருக்கின்றோம்.


Source code:


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm5.aspx.cs" Inherits="textboxdemo.WebForm5" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
        <asp:RadioButtonList ID="RadioButtonList1" runat="server">
        </asp:RadioButtonList>
        <br />
        <br />
        <br />
        <asp:Button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" Text="Submit" />
        <br />
        <br />
        <br />
        <asp:Label ID="lblMessage" 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;
using System.Collections;

namespace textboxdemo
{
    public partial class WebForm5 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            ArrayList col = new ArrayList();
            if (!IsPostBack)
            {
                col.Add("Cat");
                col.Add("Dog");
                col.Add("parrot");
                RadioButtonList1.DataSource = col;
                RadioButtonList1.DataBind();
            }
        }

        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            lblMessage.Text = "you selected " + RadioButtonList1.SelectedIndex + " :" + RadioButtonList1.SelectedItem.Text;

        }
    }

}
ads Udanz

Sunday, October 29, 2017

ASP.NET பேசிக் கண்ட்ரோல்- -4 வது பகுதி ரேடியோ பட்டன்.

இந்த வீடியோவில் நாம் ரேடியோ பட்டன் குறித்து காண இருக்கின்றோம்.

Source code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="textboxdemo.WebForm4" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server" style="background-color: #00FFFF">
    <div>
   
        please select a pet:<br />
        <asp:RadioButton ID="radCat" runat="server" GroupName="pet" Text="Cat" />
        <br />
        <br />
        <asp:RadioButton ID="radDog" runat="server" GroupName="pet" Text="Dog" />
        <br />
        <br />
        <asp:RadioButton ID="radParrot" runat="server" GroupName="pet" Text="Parrot." />
        <br />
        <br />
        <br />
        <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" />
        <br />
        <br />
        <br />
        <asp:Label ID="lblOutput" 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 WebForm4 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            if (radCat.Checked)
            {
                lblOutput.Text = "you selected Cat";
            }
            else if (radDog.Checked)
            {
                lblOutput.Text = "you selecte Dog";
            }
            else if (radParrot.Checked)
            {
                lblOutput.Text = "you selected Parrot";
            }
        }
    }
}
நன்றி மீண்டும் நாளை சந்திப்போம்.
முத்து கார்த்திகேயன்,மதுரை.


ads Udanz