Skip to main content

Implementation Of RadioButtonList

 2.QUIZ(Implementation Of RadioButtonList)-

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;


public partial class Assign2 : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        if (!IsPostBack)

        {


        }

    }

    protected void Button11_Click(object sender,EventArgs e)

    {

        if (RadioButtonList1.SelectedIndex == 0)

             TextBox1.Text = "1";

        else

             TextBox1.Text = "0";

            

        

        if (RadioButtonList2.SelectedIndex == 2)

            TextBox2.Text = "1";

        else

            TextBox2.Text = "0";


   

        if (RadioButtonList3.SelectedIndex == 2)

            TextBox3.Text = "1";

        else

            TextBox3.Text = "0";

    

        if (RadioButtonList4.SelectedIndex == 1)

            TextBox4.Text = "1";

        else

            TextBox4.Text = "0";


        if (RadioButtonList5.SelectedIndex == 0)

            TextBox5.Text = "1";

        else

            TextBox5.Text = "0";

 (RadioButtonList6.SelectedIndex == 3)

            TextBox6.Text = "1";

        else

            TextBox6.Text = "0";

    

        if (RadioButtonList7.SelectedIndex == 0)

            TextBox7.Text = "1";

        else

            TextBox7.Text = "0";

    

        if (RadioButtonList8.SelectedIndex == 1)

            TextBox8.Text = "1";

        else

            TextBox8.Text = "0";

   

        if (RadioButtonList9.SelectedIndex == 2)

            TextBox9.Text = "1";

        else

            TextBox9.Text = "0";

   

        if (RadioButtonList10.SelectedIndex == 3)

            TextBox10.Text = "1";

        else

            TextBox10.Text = "0";

    

        int t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, result;

        t1 = int.Parse(TextBox1.Text);

        t2 = int.Parse(TextBox2.Text);

        t3 = int.Parse(TextBox3.Text);

        t4 = int.Parse(TextBox4.Text);

        t5 = int.Parse(TextBox5.Text);

        t6 = int.Parse(TextBox6.Text);

        t7 = int.Parse(TextBox7.Text);

        t8 = int.Parse(TextBox8.Text);

        t9 = int.Parse(TextBox9.Text);

        t10 = int.Parse(TextBox10.Text);

        result = t1 + t2 + t3 + t4 + t5 + t6 + t7 + t8 + t9 + t10;

        TextBox11.Text = result.ToString();


        int read;

        read=int.Parse(TextBox11.Text);

        if (read >= 8)

            Label1.Text = "A+";

        else 

            Label1.Text = "B"; 


         } 

}

Comments

Popular posts from this blog

DataBase Assignment

  1. Registration page(Design)  Note:- We used Range validator in Age 's textbox.  Coding- using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls;  using System.Data.SqlClient; public partial class Registration : System.Web.UI.Page {     SqlConnection cn;     SqlCommand cm;     SqlDataReader dr;     protected void Page_Load(object sender, EventArgs e)     {     }      //Coding of submit button     protected void Button1_Click(object sender, EventArgs e)     {         string p=@"Data Source=49.50.88.43;Initial Catalog=grkistdb;Persist Security Info=True;User ID=grkistuser;Password=q2oR5w_356";         cn = new SqlConnection(p);         cn.Open();         string q = "insert into Chitransh_reg values ( '"+TextBox1.Te...

Grid View Assignment 02[Fetching Image from Data Base]

WRITE THE CODE FOR FIND BUTTON TO FIND THE DATA AND IMAGE WITH THE REFERENCE OF USER ID-     FIND BUTTON CODING-      protected void Find_Click(object sender, EventArgs e)     {         string k = @"Data Source=49.50.88.43;Initial Catalog=grkistdb;Persist Security Info=True;User ID=grkistuser;Password=q2oR5w_356";         cn = new SqlConnection(k);         cn.Open();         string q = "select * from addhar where id='" + TextBox1.Text + "'";         cm = new SqlCommand(q, cn);         dr=cm.ExecuteReader();         if (dr.Read())         {             TextBox2.Text = dr["name"].ToString();             TextBox3.Text = dr["address"].ToString();             Image1.ImageUrl = "~/pics/" + dr["status"].ToStr...

FileUpload And QueryString

1. Took File Upload control, Button, Image button control,  Label (First Page) [Browse your desired file > Click on Upload Button > Image will be shown in Image Button Control  ]  Inside the event of ImageButton QueryString is defined.  CODING- 2. When we click on it then the next page will be shown Image ,Using QueryString-  (Next Page) Image control will be used-  Inside page_load event we will call QueryString.