Beispiel #1
0
    public void Page_Load(object sender, EventArgs e)
    {
        try
        {
            this.Master.name.Text = Session["User"].ToString();
        }
        catch (Exception ex)
        {
            Response.Redirect("index.aspx");
        }
        d.getcount();
        count.Text = d.count.ToString();
        ins();
        venue();
        vol();
        hosp();
        course();
        registration();
        atmosphere();
        DataSet ds = cd.getOfferedCourse();

        gvCourseRegistration.DataSource = ds;
        gvCourseRegistration.DataBind();
        StringBuilder   htmlTable = new StringBuilder();
        RegistrationDAL rdal      = new RegistrationDAL();


        DataSet ds1 = rdal.getStudent();


        htmlTable.Append("<table border='1' id='Table1' class='table table-bordered table-hover table-responsive' width='500px' height='80'>");
        htmlTable.Append("<tr style='background-color:#591919; color: White; '><th  style='text-align:center'>Course ID</th><th style='text-align:center'>Course Name</th><th style='text-align:center'>Total Enrolled Students</th></tr>");
        int j = 1000;

        for (int i = 0; i < ds1.Tables[0].Rows.Count; i++)
        {
            int cid    = Convert.ToInt32(ds1.Tables[0].Rows[i]["Course_id"]);
            int countt = rdal.getcount(cid);
            htmlTable.Append("<tr style='color: black;'>");
            htmlTable.Append("<td>" + ds1.Tables[0].Rows[i]["Course_id"] + "</td>");
            htmlTable.Append("<td>" + ds1.Tables[0].Rows[i]["Course_Name"] + "</td>");
            htmlTable.Append("<td>" + countt + "</td>");



            htmlTable.Append("</tr>");
        }
        htmlTable.Append("</table>");
        DBDataPlaceHolder.Controls.Add(new Literal {
            Text = htmlTable.ToString()
        });
    }
Beispiel #2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            this.Master.name.Text = Session["User"].ToString();
        }
        catch (Exception ex)
        {
            Response.Redirect("index.aspx");
        }
        StringBuilder   htmlTable = new StringBuilder();
        RegistrationDAL rdal      = new RegistrationDAL();


        DataSet ds = rdal.getStudent();


        htmlTable.Append("<table border='1' id='Table1' class='table table-bordered table-hover table-responsive' width='500px' height='80'>");
        htmlTable.Append("<tr style='background-color:#591919; color: White; '><th  style='text-align:center'>Course ID</th><th style='text-align:center'>Course Name</th><th style='text-align:center'>Total Enrolled Students</th></tr>");
        int j = 1000;

        for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
        {
            int cid   = Convert.ToInt32(ds.Tables[0].Rows[i]["Course_id"]);
            int count = rdal.getcount(cid);
            htmlTable.Append("<tr style='color: black;'>");
            htmlTable.Append("<td>" + ds.Tables[0].Rows[i]["Course_id"] + "</td>");
            htmlTable.Append("<td>" + ds.Tables[0].Rows[i]["Course_Name"] + "</td>");
            htmlTable.Append("<td>" + count + "</td>");



            htmlTable.Append("</tr>");
        }
        htmlTable.Append("</table>");
        DBDataPlaceHolder.Controls.Add(new Literal {
            Text = htmlTable.ToString()
        });
        lblNo.Visible = false;
        if (ds.Tables[0].Rows.Count == 0)
        {
            DBDataPlaceHolder.Visible = false;
            lblNo.Visible             = true;
        }
    }