Asp.Net RadioButton Nesnesi Kullanımı - Bilişim Konuları

Asp.Net RadioButton Nesnesi Kullanımı

Bu örneğimizde Asp.net programında Radiobutton nesnesinin kullanımına yönelik bir örnek program yapacağız. Örneğimizde iki tane textbox nesnesi, iki tane radiobutton nesnesi, bir tane button nesnesi ve bir tane de label nesnesi bulunmaktadır. Kullanıcını girmiş olduğu ad soyad ve cinsiyet bilgilerine göre girilen bilgileri bir label üzerine birleştirerek yazdırma işlemini yapacağız. Bunu yaparken de aynı zamanda if komutunun nasıl kullanıldığını öğreneceğiz.

RadioButtonOrnegi.aspx dosyasının kodları

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

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <style type="text/css">
        .auto-style1 {
            height: 29px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
        Asp.Net RadioButton Örneği<br />
        <br />
        <table>
            <tr>
                <td class="auto-style1">Adı </td>
                <td class="auto-style1">
                    <asp:TextBox ID="TextBox1" runat="server" BackColor="Yellow"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td>Soyadı</td>
                <td>
                    <asp:TextBox ID="TextBox2" runat="server" BackColor="Yellow"></asp:TextBox>
                </td>
            </tr>
        </table>
        <br />
        <asp:RadioButton ID="RadioButton1" GroupName="cinsiyet" runat="server" Text="Bay" ForeColor="#3366CC" />
        <br />
        <asp:RadioButton ID="RadioButton2" GroupName="cinsiyet" runat="server" Text="Bayan" ForeColor="#3366CC" />
        <br />
        <br />
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Bilgileri Yazdır" Font-Bold="True" ForeColor="Red" />
        <br />
        <br />
        <asp:Label ID="Label1" runat="server" Text="Label" Font-Bold="True" ForeColor="#CC3300"></asp:Label>
    
    </div>
    </form>
</body>
</html>




RadioButtonOrnegi.aspx.cs dosyasının kodları

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace AspNetUygulamalari
{
    public partial class RadioButtonOrnegi : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            //www.bilisimkonulari.com
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            string Ad, Soyad;
            string Cinsiyet = null;

            Ad = TextBox1.Text;
            Soyad = TextBox2.Text;

            if (RadioButton1.Checked == true)
            {
                Cinsiyet = "Bay ";
            }
            else if (RadioButton2.Checked == true)
            {
                Cinsiyet = "Bayan ";
            }

            Label1.Text = Cinsiyet + Ad + " " + Soyad + " Hoşgeldiniz"; 
        }
    }
}

Ekran görüntüleri:

asp-net-radiobutton-ornegi1




asp-net-radiobutton-ornegi2

asp-net-radiobutton-ornegi3

asp-net-radiobutton-ornegi4

Bu Yazıya Tepkin Nedir?
+1
0
+1
0
+1
0
+1
0
+1
0
+1
0
+1
0

Yorum Yap

1 Yorum

  • İf komutunun anlaşılması bakımından basit ve anlaşılır bir örnek. Bu türden temel örnekler birçak sitede mevcut.