Exemplo n.º 1
0
    protected void Button7_Click(object sender, EventArgs e)
    {
        objBEL        = new StudentBEL();
        objBEL.usernm = TextBox16.Text;
        objDAL        = new EditProfile();

        objDAL.EditStudUsername(TextBox17.Text, objBEL);
    }
Exemplo n.º 2
0
    protected void Button9_Click(object sender, EventArgs e)
    {
        objBEL      = new StudentBEL();
        objBEL.pass = TextBox11.Text;
        objDAL      = new EditProfile();

        objDAL.EditStudPassword(TextBox11.Text, objBEL);
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        objBEL       = new StudentBEL();
        objDAL       = new RegisterDAL();
        objBEL.fname = TextBox1.Text;
        objBEL.mname = TextBox2.Text;
        objBEL.lname = TextBox3.Text;

        if (RadioButton1.Checked)
        {
            objBEL.gender = "male";
        }
        else
        {
            objBEL.gender = "female";
        }
        objBEL.contactNo = TextBox3.Text;
        objBEL.emailId   = TextBox4.Text;
        objBEL.bloodGrp  = DropDownList1.SelectedValue;
        objBEL.moName    = TextBox5.Text;
        objBEL.faName    = TextBox6.Text;
        objBEL.faOcc     = TextBox7.Text;
        objBEL.faCoNo    = TextBox8.Text;
        objBEL.addOfCo   = TextBox9.Text;
        objBEL.pAdd      = TextBox10.Text;
        objBEL.state     = DropDownList6.SelectedValue;
        objBEL.city      = DropDownList7.SelectedValue;
        objBEL.dob       = TextBox18.Text;

        Byte[] imgByte = null;
        if (FileUpload1.HasFile && FileUpload1.PostedFile != null)
        {
            HttpPostedFile File = FileUpload1.PostedFile;
            imgByte = new Byte[File.ContentLength];
            File.InputStream.Read(imgByte, 0, File.ContentLength);
        }
        objBEL.img = imgByte;

        if (RadioButton3.Checked)
        {
            objBEL.caste = "obc";
        }
        else
        if (RadioButton4.Checked)
        {
            objBEL.caste = "sc";
        }
        else
        if (RadioButton5.Checked)
        {
            objBEL.caste = "st";
        }
        else
        if (RadioButton6.Checked)
        {
            objBEL.caste = "NT";
        }
        else
        {
            objBEL.caste = "General";
        }


        objBEL.bPlace    = TextBox11.Text;
        objBEL.branch    = DropDownList2.SelectedValue;
        objBEL.course    = DropDownList5.SelectedValue;
        objBEL.year      = DropDownList3.SelectedValue;
        objBEL.yrOfAdmit = DropDownList12.SelectedValue;
        objBEL.rollno    = TextBox15.Text;
        objBEL.usernm    = TextBox12.Text;
        objBEL.pass      = TextBox13.Text;

        Label2.Text = objDAL.AddStudent(objBEL);

        Response.Redirect("Login.aspx");
    }