private void LoadGrid()
    {
        string userid = Request.QueryString["val1"];
        BLItem objBL  = new BLItem(); // declare and initialize BLItem object
        int    temp   = objBL.check_student_username(userid);

        if (temp == 1)
        {
            string image = objBL.get_image(userid);
            if (image.Length <= 0)
            {
                image = "uploadedimages/default.png";
            }
            //   Image1.ImageUrl = image;

            DataTable dt = objBL.GetStudent(userid, 1);
            grdContact.DataSource = dt;
            grdContact.DataBind();
        }
        else
        {
            ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Student Does Not Exist.')", true);
            //Response.Redirect("View_Student.aspx");
        }
    }
Ejemplo n.º 2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        BLItem objBL = new BLItem();

        if (!Page.IsPostBack)
        {
            if (Session["New"] != null)
            {
                Label_welcome.Text += Session["New"].ToString();
                string image = objBL.get_image(Session["New"].ToString());
                if (image.Length <= 0)
                {
                    image = "uploadedimages/default.png";
                }
                Image1.ImageUrl = image;
            }
            else
            {
                Response.Redirect("Login.aspx");
            }
        }
        else
        {
            if (Session["New"] == null)
            {
                Response.Redirect("Login.aspx");
            }
        }
    }
Ejemplo n.º 3
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        try
        {
            BLItem objBL = new BLItem(); // declare and initialize BLItem object
            int    temp  = objBL.check_student_username(TextBox1.Text);
            if (temp == 1)
            {
                string image = objBL.get_image(TextBox1.Text);
                if (image.Length <= 0)
                {
                    image = "uploadedimages/default.png";
                }
                Image1.ImageUrl    = image;
                student.DataSource = objBL.GetStudent_Personal(TextBox1.Text);
                student.DataBind();
                student.HeaderRow.Visible = false;
                student.BorderStyle       = BorderStyle.None;
                update.Visible            = true;

                for (int i = 0; i < student.Rows.Count; i++)
                {
                    student.Rows[i].Cells[1].BorderStyle = BorderStyle.None;
                    student.Rows[i].Cells[1].ForeColor   = Color.White;
                    student.Rows[i].Cells[1].Font.Bold   = false;
                }
                for (int i = 0; i < student.Rows.Count; i++)
                {
                    student.Rows[i].BorderStyle          = BorderStyle.None;
                    student.Rows[i].Cells[0].BorderStyle = BorderStyle.None;
                    student.Rows[i].Cells[0].ForeColor   = Color.Khaki;
                    student.Rows[i].Cells[0].Font.Bold   = true;
                }
            }
            else
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Student Does Not Exist.')", true);
                //Response.Redirect("View_Student.aspx");
            }
        }
        catch (SqlException)
        {
            throw;
        }
    }