Skip to main content

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.Text+"', '"+TextBox2.Text+"', '"+TextBox3.Text+"', '"+DropDownList1.Text+"', '"+TextBox4.Text+"', '"+TextBox5.Text+"')";

        cm = new SqlCommand(q,cn);


        cm.ExecuteNonQuery();


        TextBox1.Text = "";

        TextBox2.Text = "";

        TextBox3.Text = "";

        TextBox4.Text = "";

        TextBox5.Text = "";

        DropDownList1.SelectedIndex = 0;

    } 

   //Go to login page

    protected void Button2_Click(object sender, EventArgs e)

    {

     Response.Redirect("login.aspx");

    }

}


2. Login Form- 



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 login : System.Web.UI.Page

{

    SqlConnection cn;

    SqlCommand cm;

    SqlDataReader dr;


    protected void Page_Load(object sender, EventArgs e)

    {

    }



    protected void Button1_Click(object sender, EventArgs e)

    {

        string s =@"Data Source=49.50.88.43;Initial Catalog=grkistdb;Persist Security Info=True;User ID=grkistuser;Password=q2oR5w_356";

        cn = new SqlConnection(s);

        cn.Open();


        string q = "select mobile,pass from Chitransh_reg where mobile='" + TextBox1.Text + "' and  pass='" + TextBox2.Text + "'";

        cm = new SqlCommand(q, cn);


        dr= cm.ExecuteReader();


        if (dr.Read())

        {

            Response.Write("Login Successfully Done..");

        }


        else

        {

            dr.Close();

            Response.Write("Invalid mobile or password");

        }

    }

}

Comments

Popular posts from this blog

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.

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

Grid View Assignment -01 [Attendence]

  Q. Insert checkbox and textbox in grid view and create a column in data base table named "Attendence" when a user Select the record using checkbox and input present/absent in textbox should be reflected to the database table. Update Selection(button)  Code-  {         string s = @"Data Source=49.50.88.43;Initial Catalog=grkistdb;Persist Security Info=True;User ID=grkistuser;Password=q2oR5w_356";         cn = new SqlConnection(s);         cn.Open();         foreach (GridViewRow gr1 in GridView1.Rows)         {             CheckBox c1 = (CheckBox) gr1.FindControl("cb1");             TextBox t1 = (TextBox)gr1.FindControl("tb1");             if (c1.Checked)             {                        ...