Skip to main content

Implementation Of DropDownList

 1. Implementation Of DropDownList-  

(i)Design-


(ii)Code-

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;


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

{

    protected void Page_Load(object sender, EventArgs e)

    {


    }

    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)

    {

        if (DropDownList1.Text == "UG")

        {

            DropDownList2.Items.Clear();

            DropDownList2.Items.Add("CSE");

            DropDownList2.Items.Add("IT");

            DropDownList2.Items.Add("CIVIL");

            DropDownList2.Items.Add("MECH");

            DropDownList2.Items.Add("ETC");

            DropDownList2.Items.Add("ETRX"); 

        }


        if (DropDownList1.Text == "PG")

        {

            DropDownList2.Items.Clear();

            DropDownList2.Items.Add("MCA");

            DropDownList2.Items.Add("MBA");

            DropDownList2.Items.Add("MTECH");

        }


        

    }

    protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e)

    {

        if (DropDownList2.Text == "CSE")

            Label1.Text = "70%";

        else if (DropDownList2.Text == "IT")

            Label1.Text = "60%";

        else if (DropDownList2.Text == "CIVIL")

            Label1.Text = "50%";

        else if (DropDownList2.Text == "MECH")

            Label1.Text = "55%";

        else if (DropDownList2.Text == "ETC")

            Label1.Text = "65%";

        else if (DropDownList2.Text == "ETRX")

            Label1.Text = "70%";

        else if (DropDownList2.Text == "MCA")

            Label1.Text = "60%";

        else if (DropDownList2.Text == "MBA")

            Label1.Text = "65%";

        else if (DropDownList2.Text == "MTECH")

            Label1.Text = "70%";

    }

}



    


Comments

Popular posts from this blog

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...

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...

DBMS- Queries

  1. display all records of data base-   Query- select * from Chitransh_stu;  2. display the name whose age is lesser than 20- Query-   SELECT name FROM     Chitransh_stu WHERE  (age < 20);  3. display the marks of students with their names whose section is BCA- Query-  SELECT name, marks FROM     Chitransh_stu WHERE  (course = 'BCA'); 4. Delete a record from the table whose address is jabalpur- Query-   DELETE FROM Chitransh_stu WHERE  (address = 'jabalpur'); 5. Delete the records whose marks are greater than 60- Query-   DELETE FROM Chitransh_stu WHERE  (marks < 60); 6. Insert a new record in the table- Query-   INSERT INTO Chitransh_stu                   (roll, name, age, course, address, marks) VALUES (10, 'sidhharth', 34, 'mca', 'jabalpur', 89); 7. Update the course of Students whose marks are greater than 70- Que...