protected void setTable()
    {
        SearchModule mySearchModule = new SearchModule();
        DataTable myDataTable = new DataTable();

        myDataTable = mySearchModule.ratedListOfApplicantsForJobPosition3(Request["pId"]).Copy();
        myDataTable.Columns.Add("Select for Interview", typeof(String));
        myDataTable.Columns.Add("Photo", typeof(String)).SetOrdinal(1);

        ApplicantsListGridView.DataSource = myDataTable;
        ApplicantsListGridView.DataBind();

        foreach (GridViewRow row in ApplicantsListGridView.Rows)
        {
            HyperLink hp = new HyperLink();
            hp.Text = row.Cells[2].Text;
            hp.NavigateUrl = "~/SearchCandidates.aspx?userId=" + row.Cells[0].Text;
            row.Cells[2].Controls.Add(hp);

            CheckBox cb = new CheckBox();
            row.Cells[selectRow].Controls.Add(cb);

            row.Cells[1].Controls.Clear();
            Image img = new Image();
            img.ImageUrl = "~/ShowPhoto.aspx?userId=" + row.Cells[0].Text;
            img.Height = 60;
            row.Cells[1].Controls.Add(img);
        }
    }